[gradle plug-in] update jvm target (#18639)

* update jvm target

* fix jvmTarget
This commit is contained in:
William Cheng 2024-05-11 14:06:16 +08:00 committed by GitHub
parent 4368eb45e8
commit 40c7adccd8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -63,7 +63,7 @@ tasks.named("test", Test).configure {
tasks.withType(KotlinCompile).configureEach {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "11"
}
}