Skip to content

Commit 07e4100

Browse files
committed
Adopt the Lombok 1.18.32 release.
Signed-off-by: Roland Grunberg <rgrunber@redhat.com>
1 parent 8e71cb2 commit 07e4100

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

gulpfile.js

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

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

0 commit comments

Comments
 (0)