Switch Kotlin version to 1.1.3, remove obsolete Gradle syntax (#707)

This commit is contained in:
Nikolay Igotti
2017-06-27 11:18:13 +03:00
committed by GitHub
parent e257445a3b
commit 96d9f734c0
3 changed files with 9 additions and 5 deletions
+4 -2
View File
@@ -30,6 +30,8 @@ task build {
dependsOn "${host}Hash" dependsOn "${host}Hash"
} }
task clean << { task clean {
delete buildDir doLast {
delete buildDir
}
} }
+1 -1
View File
@@ -14,7 +14,7 @@
# limitations under the License. # limitations under the License.
# #
kotlin_version=1.1.0 kotlin_version=1.1.3
llvmVersion = 3.9.0 llvmVersion = 3.9.0
remoteRoot=konan_tests remoteRoot=konan_tests
#kotlinCompilerModule=org.jetbrains.kotlin:kotlin-compiler:1.1-SNAPSHOT #kotlinCompilerModule=org.jetbrains.kotlin:kotlin-compiler:1.1-SNAPSHOT
+4 -2
View File
@@ -45,6 +45,8 @@ targetList.each { targetName ->
task hostRuntime(dependsOn: "${rootProject.ext.host}Runtime") task hostRuntime(dependsOn: "${rootProject.ext.host}Runtime")
task clean << { task clean {
delete buildDir doLast {
delete buildDir
}
} }