Skip to content

Commit 2cd1c83

Browse files
committed
Revert to Lombok 1.18.34.
- Workaround for issue #3836 Signed-off-by: Roland Grunberg <[email protected]>
1 parent 6292a4c commit 2cd1c83

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

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.35';
130+
const lombokVersion = '1.18.34';
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.35 is released.
142138
done();
143139
});
144140

0 commit comments

Comments
 (0)