Skip to content

Commit b59c43a

Browse files
committed
Adopt the [email protected] edge release.
Signed-off-by: Roland Grunberg <[email protected]>
1 parent 56f2cfb commit b59c43a

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ jobs:
117117
- name: Clean tests
118118
run: npx gulp clean_test_folder
119119
- name: Prepare Lombok Support
120-
if: false
121120
run: |
122121
npx gulp download_lombok
123122
- name: Prepare Pre-Release

gulpfile.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,14 +127,18 @@ gulp.task('download_lombok', async function (done) {
127127
}
128128

129129
await new Promise(function (resolve, reject) {
130-
const lombokVersion = '1.18.30';
130+
const lombokVersion = '1.18.31';
131131
// The latest lombok version can be found on the website https://projectlombok.org/downloads
132-
const lombokUrl = `https://projectlombok.org/downloads/lombok-${lombokVersion}.jar`;
132+
const lombokUrl = `https://projectlombok.org/lombok-edge.jar`;
133133
download(lombokUrl)
134-
.pipe(gulp.dest('./lombok/'))
134+
.pipe(gulp.dest("./lombok/"))
135135
.on("error", reject)
136-
.on('end', resolve);
136+
.on("end", () => {
137+
fse.renameSync("./lombok/lombok-edge.jar", `./lombok/lombok-${lombokVersion}.jar`);
138+
resolve();
139+
});
137140
});
141+
// TODO: Switch to stable version once lombok 1.18.31 is released.
138142
done();
139143
});
140144

lombok/lombok-1.18.31-3454.jar

-1.94 MB
Binary file not shown.

0 commit comments

Comments
 (0)