Minor: move extra property initialization

This commit is contained in:
Ilya Gorbunov
2017-10-10 05:03:28 +03:00
parent 712d0e0777
commit 39c8bae134
+1 -1
View File
@@ -5,6 +5,7 @@ apply plugin: 'kotlin'
configureJvm6Project(project) configureJvm6Project(project)
configurePublishing(project) configurePublishing(project)
ext.javaHome = JDK_18 ext.javaHome = JDK_18
ext.jvmTarget = "1.8"
dependencies { dependencies {
compile project(':kotlin-stdlib') compile project(':kotlin-stdlib')
@@ -58,7 +59,6 @@ compileKotlin {
compileTestKotlin { compileTestKotlin {
kotlinOptions.freeCompilerArgs = ["-Xallow-kotlin-package"] kotlinOptions.freeCompilerArgs = ["-Xallow-kotlin-package"]
jvmTarget = "1.8"
} }
kotlin.experimental.coroutines 'enable' kotlin.experimental.coroutines 'enable'