Report error if <withKotlin> is run in fork mode

Otherwise the error message is confusing, see #KT-9292
This commit is contained in:
Alexander Udalov
2017-05-17 14:23:45 +03:00
parent 671aed252d
commit d1c9d0328a
5 changed files with 42 additions and 0 deletions
@@ -0,0 +1,13 @@
<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 fork="yes" memorymaximumsize="1G" srcdir="${test.data}" destdir="${temp}/classes" includeantruntime="false">
<withKotlin/>
</javac>
<jar destfile="${temp}/hello.jar">
<fileset dir="${temp}/classes"/>
</jar>
</target>
</project>