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"
}
task clean << {
delete buildDir
task clean {
doLast {
delete buildDir
}
}
+1 -1
View File
@@ -14,7 +14,7 @@
# limitations under the License.
#
kotlin_version=1.1.0
kotlin_version=1.1.3
llvmVersion = 3.9.0
remoteRoot=konan_tests
#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 clean << {
delete buildDir
task clean {
doLast {
delete buildDir
}
}