Upgrade to Checkstyle 9.0, Groovy 3.0.9, Hibernate ORM 5.5.7

Includes downgrade of Kotlin language level to 1.8 (for KotlinScriptTemplateTests)
This commit is contained in:
Juergen Hoeller
2021-09-15 15:26:13 +02:00
parent f53bf8e9e1
commit 0640da74bc
2 changed files with 5 additions and 5 deletions

View File

@@ -121,12 +121,12 @@ pluginManager.withPlugin("kotlin") {
// Fallback to JDK11
compileKotlin {
kotlinOptions {
jvmTarget = '11'
jvmTarget = '1.8'
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = '11'
jvmTarget = '1.8'
}
}
}