ant task fixes + first integration test

This commit is contained in:
Leonid Shalupov
2012-05-07 18:12:06 +04:00
parent ffcba10773
commit 58c0ad3c46
8 changed files with 103 additions and 9 deletions
@@ -0,0 +1,7 @@
<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>