SomeTrog's versioning test - compile on jdk 17 FOR jre 11, includes gradle upgrade (#11111)

This commit is contained in:
Yair Morgenstern
2024-02-10 19:44:47 +02:00
committed by GitHub
parent a9c367907d
commit e7a2b94c60
8 changed files with 52 additions and 26 deletions

View File

@ -13,7 +13,13 @@ sourceSets {
}
kotlin {
jvmToolchain(11)
jvmToolchain(17)
target {
compilations.all {
kotlinOptions.jvmTarget = JavaVersion.VERSION_11.majorVersion
}
}
}
java {
targetCompatibility = JavaVersion.VERSION_11