Files
kotlin-fork/compiler/integration-tests/data/antTaskJvm/build.xml
T
2012-05-07 18:12:06 +04:00

8 lines
284 B
XML

<project name="Ant Task Test" default="build">
<taskdef resource="org/jetbrains/jet/buildtools/ant/antlib.xml" classpath="${kotlin.lib}/kotlin-ant.jar"/>
<target name="build">
<kotlinc src="${test.data}/hello.kt" output="${temp}/hello.jar"/>
</target>
</project>