Add tests on "-language-version" usage from Ant, Maven, Gradle

This commit is contained in:
Alexander Udalov
2016-05-26 15:40:36 +03:00
parent bc5202a4d7
commit 2c516f18a0
12 changed files with 164 additions and 0 deletions
@@ -0,0 +1,9 @@
<project name="Ant Task Test" default="build">
<taskdef resource="org/jetbrains/kotlin/ant/antlib.xml" classpath="${kotlin.lib}/kotlin-ant.jar"/>
<target name="build">
<kotlinc src="${test.data}/main.kt" output="${temp}/hello.jar">
<compilerarg line="-language-version 1.0"/>
</kotlinc>
</target>
</project>