HHH-17805 Fix jpamodelgen quarkus/jd tests with jdk >= 17

This commit is contained in:
Marco Belladelli 2024-03-05 09:44:12 +01:00 committed by Christian Beikov
parent 004158cc58
commit 096b667520
1 changed files with 40 additions and 9 deletions

View File

@ -130,20 +130,51 @@ compileTestJava {
// Tests with records
if ( jdkVersions.test.release.asInt() >= 17 && jdkVersions.explicit ) {
// We need to configure the source and target version to 17
//compileTestJava17Java {
def testCompilerConfig = {
javaCompiler = javaToolchains.compilerFor {
languageVersion = jdkVersions.test.compile
}
sourceCompatibility = 17
targetCompatibility = 17
}
compileTestJava {
javaCompiler = javaToolchains.compilerFor {
languageVersion = jdkVersions.test.compile
}
sourceCompatibility = 17
targetCompatibility = 17
configure testCompilerConfig
}
compileQuarkusOrmPanacheJava {
configure testCompilerConfig
}
compileQuarkusHrPanacheJava {
configure testCompilerConfig
}
compileJakartaDataJava {
configure testCompilerConfig
}
def testLauncherConfig = {
javaLauncher = javaToolchains.launcherFor {
languageVersion = jdkVersions.test.launcher
}
}
test {
javaLauncher = javaToolchains.launcherFor {
languageVersion = jdkVersions.test.launcher
}
configure testLauncherConfig
}
quarkusOrmPanacheTest {
configure testLauncherConfig
}
quarkusHrPanacheTest {
configure testLauncherConfig
}
jakartaDataTest {
configure testLauncherConfig
}
}
else {
sourceSets {