Add externalAnnotations ant test and ant-1.8

This commit is contained in:
Erokhin Stanislav
2013-10-25 21:35:52 +04:00
parent 694eed595b
commit 2c93ace78d
20 changed files with 209 additions and 18 deletions
@@ -1,4 +1,4 @@
OUT Buildfile: build.xml
OUT Buildfile: [TestData]/build.xml
OUT
OUT build:
OUT [mkdir] Created dir: [Temp]/classes
@@ -1,10 +1,15 @@
<project name="Ant Task Test" default="build">
<target name="build">
<path id="classpath">
<fileset dir="${kotlin.home}" includes="kotlin-runtime.jar"/>
</path>
<target name="build">
<delete dir="${temp}/classes" failonerror="false"/>
<mkdir dir="${temp}/classes"/>
<javac destdir="${temp}/classes" compiler="org.jetbrains.jet.buildtools.ant.KotlinCompilerAdapter">
<javac destdir="${temp}/classes" includeantruntime="false" compiler="org.jetbrains.jet.buildtools.ant.KotlinCompilerAdapter">
<src path="${test.data}/root1"/>
<classpath refid="classpath"/>
</javac>
<jar destfile="${temp}/hello.jar">
<fileset dir="${temp}/classes"/>