Files
kotlin-fork/compiler/testData/integration/ant/jvm/jvmClasspath/build.xml
T
2015-01-03 12:28:54 +03: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>