Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adopt the [email protected] edge release. #3461

Merged
merged 1 commit into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Loading