Skip to content

Commit

Permalink
Adopt the [email protected] edge release.
Browse files Browse the repository at this point in the history
Signed-off-by: Roland Grunberg <[email protected]>
  • Loading branch information
rgrunber committed Jan 15, 2024
1 parent 56f2cfb commit b59c43a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ jobs:
- name: Clean tests
run: npx gulp clean_test_folder
- name: Prepare Lombok Support
if: false
run: |
npx gulp download_lombok
- name: Prepare Pre-Release
Expand Down
12 changes: 8 additions & 4 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.30';
const lombokVersion = '1.18.31';
// 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/'))
.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.31 is released.
done();
});

Expand Down
Binary file removed lombok/lombok-1.18.31-3454.jar
Binary file not shown.

0 comments on commit b59c43a

Please sign in to comment.