Skip to content

Commit

Permalink
Fix ant warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
slycelote committed Nov 7, 2021
1 parent 324f6eb commit ff60608
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tccaide/tccaide.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@



<property name="compiler.args.tccaide" value="-source 1.6 ${compiler.args}"/>
<property name="compiler.args.tccaide" value="--release 7 ${compiler.args}"/>

<property name="tccaide.output.dir" value="${module.tccaide.basedir}/out/production/tccaide"/>
<property name="tccaide.testoutput.dir" value="${module.tccaide.basedir}/out/test/tccaide"/>
Expand Down Expand Up @@ -127,7 +127,7 @@

<target name="compile.module.tccaide.production" description="Compile module tccaide; production classes">
<mkdir dir="${tccaide.output.dir}"/>
<javac destdir="${tccaide.output.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true">
<javac destdir="${tccaide.output.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true" includeantruntime="false">
<compilerarg line="${compiler.args.tccaide}"/>
<bootclasspath refid="tccaide.module.bootclasspath"/>
<classpath refid="tccaide.module.production.classpath"/>
Expand Down Expand Up @@ -187,4 +187,4 @@
</target>

<target name="all" depends="build.modules, build.all.artifacts" description="build all"/>
</project>
</project>

0 comments on commit ff60608

Please sign in to comment.