Reload config (#315)

This commit is contained in:
KirillPamPam
2023-10-06 14:04:08 +04:00
committed by GitHub
parent 582896c44d
commit 4d377f806d
20 changed files with 595 additions and 84 deletions

View File

@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import java.time.Instant
import java.time.ZoneId
import java.time.format.DateTimeFormatter
@@ -124,14 +126,10 @@ dependencies {
}
compileKotlin {
kotlinOptions {
jvmTarget = "20"
}
compilerOptions.jvmTarget.set(JvmTarget.JVM_20)
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "20"
}
compilerOptions.jvmTarget.set(JvmTarget.JVM_20)
}
test {