Skip to content

Commit

Permalink
Update embedded lombok library name to reflect actual version.
Browse files Browse the repository at this point in the history
- The edge release is now targeting 1.18.35

Signed-off-by: Roland Grunberg <[email protected]>
  • Loading branch information
rgrunber committed Oct 29, 2024
1 parent 0f89a67 commit cc32926
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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();
});

Expand Down

0 comments on commit cc32926

Please sign in to comment.