From cc32926776bbae1c95c7d51ed982604b3c07c249 Mon Sep 17 00:00:00 2001 From: Roland Grunberg Date: Tue, 29 Oct 2024 13:12:48 -0400 Subject: [PATCH] Update embedded lombok library name to reflect actual version. - The edge release is now targeting 1.18.35 Signed-off-by: Roland Grunberg --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 8fc7a70e6..b0ca41a20 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -127,7 +127,7 @@ gulp.task('download_lombok', async function (done) { } await new Promise(function (resolve, reject) { - const lombokVersion = '1.18.33'; + const lombokVersion = '1.18.35'; // The latest lombok version can be found on the website https://projectlombok.org/downloads const lombokUrl = `https://projectlombok.org/lombok-edge.jar`; download(lombokUrl) @@ -138,7 +138,7 @@ gulp.task('download_lombok', async function (done) { resolve(); }); }); - // TODO: Switch to stable version once lombok 1.18.33 is released. + // TODO: Switch to stable version once lombok 1.18.35 is released. done(); });