Skip to content

Commit

Permalink
update source/target in ant build.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
renat-nosto committed Mar 20, 2024
1 parent 332b5b1 commit feeed3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions framework/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

<target name="compile" description="compile without cleaning">
<mkdir dir="classes"/>
<javac encoding="utf-8" srcdir="src" destdir="classes" debug="true" source="11" target="11">
<javac encoding="utf-8" srcdir="src" destdir="classes" debug="true" source="17" target="17">
<classpath refid="project.classpath" />
</javac>
<copy todir="classes">
Expand Down Expand Up @@ -233,7 +233,7 @@
<!-- Tests -->

<target name="compile-tests" depends="compile">
<javac encoding="utf-8" nowarn="${compile.nowarn}" debug="true" destdir="classes" classpathref="project.classpath" srcdir="tests/src" source="11" target="11">
<javac encoding="utf-8" nowarn="${compile.nowarn}" debug="true" destdir="classes" classpathref="project.classpath" srcdir="tests/src" source="17" target="17">
<include name="**/*.java"/>
</javac>
</target>
Expand Down Expand Up @@ -396,7 +396,7 @@

<target name="compile-unittest" depends="compile">
<mkdir dir="test-classes"/>
<javac encoding="utf-8" srcdir="test-src" destdir="test-classes" debug="true" source="11" target="11">
<javac encoding="utf-8" srcdir="test-src" destdir="test-classes" debug="true" source="17" target="17">
<classpath refid="classpath.test" />
</javac>
<copy todir="test-classes">
Expand Down

0 comments on commit feeed3a

Please sign in to comment.