Skip to content

Commit

Permalink
Try changing compilation version
Browse files Browse the repository at this point in the history
  • Loading branch information
bgprudhomme committed Oct 21, 2024
1 parent c40ead3 commit 891ebee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RoaringBitmap/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ tasks.named<Jar>("sourcesJar") {
// Unset Java 8 release applied from root project to allow modularity plugin to
// control the class file versions.
tasks.named<JavaCompile>("compileJava") {
options.release.set(null as Int?)
options.release.set(21)
}

configure<org.javamodularity.moduleplugin.extensions.ModularityExtension> {
Expand All @@ -37,7 +37,7 @@ configure<org.javamodularity.moduleplugin.extensions.ModularityExtension> {
// Unset Java 8 release applied from root project to allow modularity plugin to
// control the class file versions.
tasks.named<JavaCompile>("compileModuleInfoJava") {
options.release.set(null as Int?)
options.release.set(21)
}

tasks.test {
Expand Down

0 comments on commit 891ebee

Please sign in to comment.