Philip W
05/30/2024, 12:54 PMThomas Broyer
05/30/2024, 1:14 PMtesting {
suites {
register<JvmTestSuite>("jdk21test") {
project.tasks.named<JavaCompile>(sources.compileJavaTaskName) {
// configure the JavaCompile toolchain
}
targets.configureEach {
testTask {
// configure the Test toolchain
}
}
}
}
}
(use https://docs.gradle.org/current/userguide/toolchains.html#toolchains_for_tasks to configure the toolchain for those tasks)Philip W
05/30/2024, 1:23 PM