Add builds for main stdlib, stdlib jre7/8, kotlin.test

This commit is contained in:
Ilya Chernikov
2017-01-04 15:00:47 +01:00
committed by Ilya Gorbunov
parent ed9221cb7d
commit 35a135cbf6
7 changed files with 257 additions and 5 deletions
+8
View File
@@ -33,6 +33,14 @@ artifacts {
archives javadocJar
}
compileJava {
sourceCompatibility = 1.6
targetCompatibility = 1.6
options.fork = true
// TODO: find how to fix on macos
// options.bootClasspath = "${System.getenv('JDK_16')}/jre/lib/rt.jar"
}
compileKotlin {
kotlinOptions.freeCompilerArgs = ["-Xallow-kotlin-package", "-module-name", "${project.name}".toString()]
}