Refactored code a bit

This commit is contained in:
dankito 2020-05-14 22:40:42 +02:00
parent b18a9a04f4
commit cee92e4d2d
1 changed files with 3 additions and 6 deletions

View File

@ -5,12 +5,9 @@ apply plugin: 'kotlin'
sourceCompatibility = "1.7"
targetCompatibility = "1.7"
compileKotlin {
kotlinOptions.jvmTarget = "1.6"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileKotlin.kotlinOptions.jvmTarget = "1.6"
compileTestKotlin.kotlinOptions.jvmTarget = "1.8"