From 07e4100250d6fd5b68b7ff5d341d0f6077c920ba Mon Sep 17 00:00:00 2001 From: Roland Grunberg Date: Fri, 22 Mar 2024 10:27:52 -0400 Subject: [PATCH] Adopt the Lombok 1.18.32 release. Signed-off-by: Roland Grunberg --- gulpfile.js | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index f2bc8072c..08e633557 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -127,18 +127,14 @@ gulp.task('download_lombok', async function (done) { } await new Promise(function (resolve, reject) { - const lombokVersion = '1.18.31'; + const lombokVersion = '1.18.32'; // The latest lombok version can be found on the website https://projectlombok.org/downloads - const lombokUrl = `https://projectlombok.org/lombok-edge.jar`; + const lombokUrl = `https://projectlombok.org/downloads/lombok-${lombokVersion}.jar`; download(lombokUrl) .pipe(gulp.dest("./lombok/")) .on("error", reject) - .on("end", () => { - fse.renameSync("./lombok/lombok-edge.jar", `./lombok/lombok-${lombokVersion}.jar`); - resolve(); - }); + .on("end", resolve); }); - // TODO: Switch to stable version once lombok 1.18.31 is released. done(); });