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) {
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
You can’t perform that action at this time.
0 commit comments