File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 14
14
- uses : actions/setup-java@v4
15
15
with :
16
16
distribution : ' temurin'
17
- java-version : ' 21 '
17
+ java-version : ' 24 '
18
18
- name : Setup Gradle
19
19
uses : gradle/actions/setup-gradle@v4
20
20
with :
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ val jmhVersion = "1.37"
26
26
val jolVersion = " 0.17"
27
27
28
28
tasks.compileJava {
29
- options.release.set(21 )
29
+ options.release.set(24 )
30
30
}
31
31
32
32
tasks.register<JavaExec >(" runBenchmark" ) {
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ allprojects {
59
59
}
60
60
61
61
tasks.compileJava {
62
- options.release.set(21 )
62
+ options.release.set(24 )
63
63
options.javaModuleVersion.set(project.version.toString())
64
64
options.encoding = " UTF-8"
65
65
options.isWarnings = false
@@ -68,7 +68,7 @@ allprojects {
68
68
tasks.withType<Javadoc >().configureEach {
69
69
(options as StandardJavadocDocletOptions ).also {
70
70
it.encoding(" UTF-8" )
71
- it.addStringOption(" link" , " https://docs.oracle.com/en/java/javase/21 /docs/api/" )
71
+ it.addStringOption(" link" , " https://docs.oracle.com/en/java/javase/24 /docs/api/" )
72
72
it.addBooleanOption(" html5" , true )
73
73
it.addStringOption(" Xdoclint:none" , " -quiet" )
74
74
}
@@ -144,7 +144,7 @@ sourceSets {
144
144
}
145
145
146
146
tasks.compileTestJava {
147
- options.release.set(21 )
147
+ options.release.set(24 )
148
148
}
149
149
150
150
tasks.test {
You can’t perform that action at this time.
0 commit comments