File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/main/java/org/fedoraproject/javapackages/validator Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -243,13 +243,15 @@ private void compileFiles() throws IOException {
243243 compilerOptions .add ("-proc:none" );
244244
245245 compilerOptions .add ("--release" );
246- compilerOptions .add (props .getProperty ("compiler.release" , "23 " ));
246+ compilerOptions .add (props .getProperty ("compiler.release" , "25 " ));
247247
248248 if (!parameters .classPaths .isEmpty ()) {
249249 compilerOptions .add ("-cp" );
250250 compilerOptions .add (parameters .classPaths .stream ().map (Path ::toString ).collect (Collectors .joining (":" )));
251251 }
252252
253+ logger .debug ("Compiler options: {0}" , Decorated .plain (compilerOptions ));
254+
253255 try {
254256 var output = new StringWriter ();
255257 new PrintWriter (output ).println ("Failed to compile sources:" );
You can’t perform that action at this time.
0 commit comments