fad40ac11e
org.jetbrains.jet.buildtools.ant -> org.jetbrains.kotlin.ant The old antlib.xml is kept for migration purposes
12 lines
411 B
XML
Vendored
12 lines
411 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">
|
|
<kotlin2js src="${test.data}/root1"
|
|
noStdlib="true"
|
|
output="${temp}/out.js"
|
|
outputPrefix="${test.data}/prefix"
|
|
outputPostfix="${test.data}/postfix" />
|
|
</target>
|
|
</project>
|