Switching library projects to java 8 compilation with exceptions for stdlib/runtime/reflect/test

This commit is contained in:
Ilya Chernikov
2017-08-03 15:42:28 +02:00
parent fca9478fd8
commit 3caa426b76
9 changed files with 47 additions and 9 deletions
+6 -2
View File
@@ -2,13 +2,17 @@ description 'Kotlin Script Runtime'
apply plugin: 'kotlin'
configureJvmProject(project)
configureJvm6Project(project)
configurePublishing(project)
dependencies {
compileOnly project(':kotlin-stdlib')
}
configurations {
mainJar
}
sourceSets {
main {
kotlin {
@@ -24,9 +28,9 @@ jar {
artifacts {
archives sourcesJar
archives javadocJar
mainJar jar
}
dist {
from (jar, sourcesJar)
}