File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -127,18 +127,14 @@ gulp.task('download_lombok', async function (done) {
127
127
}
128
128
129
129
await new Promise ( function ( resolve , reject ) {
130
- const lombokVersion = '1.18.35 ' ;
130
+ const lombokVersion = '1.18.34 ' ;
131
131
// 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` ;
133
133
download ( lombokUrl )
134
134
. pipe ( gulp . dest ( "./lombok/" ) )
135
135
. on ( "error" , reject )
136
- . on ( "end" , ( ) => {
137
- fse . renameSync ( "./lombok/lombok-edge.jar" , `./lombok/lombok-${ lombokVersion } .jar` ) ;
138
- resolve ( ) ;
139
- } ) ;
136
+ . on ( "end" , resolve ) ;
140
137
} ) ;
141
- // TODO: Switch to stable version once lombok 1.18.35 is released.
142
138
done ( ) ;
143
139
} ) ;
144
140
You can’t perform that action at this time.
0 commit comments