Skip to content

Commit

Permalink
Adopt the Lombok 1.18.32 release.
Browse files Browse the repository at this point in the history
Signed-off-by: Roland Grunberg <[email protected]>
  • Loading branch information
rgrunber committed Mar 23, 2024
1 parent 8e71cb2 commit 07e4100
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});

Expand Down

0 comments on commit 07e4100

Please sign in to comment.