6d00c265e2
This change requires withKotlin to be run with Ant of version at least 1.8.2. Some test data changed because now compileList contains both Java and Kotlin sources #KT-7870 Fixed
14 lines
477 B
XML
Vendored
14 lines
477 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">
|
|
<mkdir dir="${temp}/classes"/>
|
|
<javac srcdir="${test.data}" destdir="${temp}/classes" includeantruntime="false">
|
|
<withKotlin/>
|
|
</javac>
|
|
<jar destfile="${temp}/hello.jar">
|
|
<fileset dir="${temp}/classes"/>
|
|
</jar>
|
|
</target>
|
|
</project>
|