add geantyref to fix and simplify generic Type parsing.

Also switch to java 23 to avoid conflicts and issues.
This commit is contained in:
2024-11-29 21:36:02 +01:00
parent 659218682e
commit 6eb7fb723f
3 changed files with 10 additions and 8 deletions

View File

@@ -21,13 +21,13 @@ dependencies {
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
implementation(libs.log4j)
implementation(libs.geantyref)
}
// Apply a specific Java toolchain to ease working on different environments.
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
languageVersion = JavaLanguageVersion.of(23)
}
}