Skip to content

Commit

Permalink
Adopt the Lombok 1.18.33 edge release.
Browse files Browse the repository at this point in the history
Co-authored-by: Marco Klein <[email protected]>
Co-authored-by: Roland Grunberg <[email protected]>
  • Loading branch information
marco-belonio and rgrunber committed Jun 14, 2024
1 parent 2015139 commit 70ebc3e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,18 @@ gulp.task('download_lombok', async function (done) {
}

await new Promise(function (resolve, reject) {
const lombokVersion = '1.18.32';
const lombokVersion = '1.18.33';
// The latest lombok version can be found on the website https://projectlombok.org/downloads
const lombokUrl = `https://projectlombok.org/downloads/lombok-${lombokVersion}.jar`;
const lombokUrl = `https://projectlombok.org/lombok-edge.jar`;
download(lombokUrl)
.pipe(gulp.dest("./lombok/"))
.on("error", reject)
.on("end", resolve);
.on("end", () => {
fse.renameSync("./lombok/lombok-edge.jar", `./lombok/lombok-${lombokVersion}.jar`);
resolve();
});
});
// TODO: Switch to stable version once lombok 1.18.33 is released.
done();
});

Expand Down

0 comments on commit 70ebc3e

Please sign in to comment.