Files
kotlin-fork/compiler/testData/integration/ant/jvm/doNotFailOnError/build.xml
T
2023-09-19 15:46:27 +00:00

16 lines
576 B
XML
Vendored

<project name="Ant Task Test" default="build">
<taskdef resource="org/jetbrains/kotlin/ant/antlib.xml" classpath="${kotlin.lib}/kotlin-ant.jar"/>
<target name="build">
<javac srcdir="${test.data}" destdir="${temp}" includeantruntime="false" failonerror="false">
<withKotlin>
<compilerarg line="-Xuse-fir-lt=false"/>
</withKotlin>
</javac>
<kotlinc src="${test.data}" output="${temp}" failonerror="false">
<compilerarg line="-Xuse-fir-lt=false"/>
</kotlinc>
</target>
</project>