15 lines
524 B
XML
Vendored
15 lines
524 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">
|
|
<kotlinc src="${test.data}/hello.kt" output="${temp}/hello.jar"/>
|
|
|
|
<java classname="hello.HelloPackage" fork="true">
|
|
<classpath>
|
|
<pathelement location="${temp}/hello.jar"/>
|
|
<pathelement location="${kotlin.runtime.jar}"/>
|
|
</classpath>
|
|
</java>
|
|
</target>
|
|
</project>
|