1
1
Fork 0

Update to Kotlin 1.5

This commit is contained in:
Svetlana Isakova 2021-07-21 21:55:02 +02:00
parent a7eabc2428
commit 132b7a0091
2 changed files with 4 additions and 4 deletions

View File

@ -15,5 +15,5 @@ fun main() {
capture {
val zn: JTool = JTool.get(null) // [5]
} eq "NullPointerException: " +
"JTool.get(null) must not be null"
"get(null) must not be null"
}

View File

@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.4.0'
ext.kotlin_version = '1.5.20'
repositories {
mavenCentral()
}
@ -34,8 +34,8 @@ allprojects {
compile "junit:junit:4.12"
// Logging support for samples:
compile 'io.github.microutils:kotlin-logging:1.6.24'
compile 'org.slf4j:slf4j-simple:1.8.0-beta4'
compile 'io.github.microutils:kotlin-logging:2.0.10'
compile 'org.slf4j:slf4j-simple:1.7.32'
}
compileKotlin.destinationDir = compileJava.destinationDir
compileKotlin {