Skip to content

Commit

Permalink
Force --release 11 for o.e.ant.launching/lib/remote.jar
Browse files Browse the repository at this point in the history
Fixes the following in the workspace build:
```
warning: [options] system modules path not set in conjunction with
-source 11
```
Rebuild (first time in 3 years!) or remote.jar pushed.
  • Loading branch information
akurtakov committed Jan 20, 2025
1 parent 13a7085 commit a848846
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ant/org.eclipse.ant.launching/buildfiles/buildRemote.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<property name="destdir" value="${temp.folder}/lib/remote.jar.bin"/>
<delete dir="${destdir}"/>
<mkdir dir="${destdir}"/>
<javac source="11" target="11" destdir="${destdir}" failonerror="true" verbose="false" debug="on" includeAntRuntime="yes"
<javac release="11" destdir="${destdir}" failonerror="true" verbose="false" debug="on" includeAntRuntime="yes"
classpath="${basedir}/bin">
<src path="${basedir}/remote"/>
<compilerarg value="-Xlint"/>
Expand Down
Binary file modified ant/org.eclipse.ant.launching/lib/remote.jar
Binary file not shown.

0 comments on commit a848846

Please sign in to comment.