Skip to content

Commit 32fefa2

Browse files
committed
Reduce minimum version even more, compile with java 17 on workflow
1 parent 3742404 commit 32fefa2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ processResources {
3434
}
3535

3636
tasks.withType(JavaCompile).configureEach {
37-
it.options.release = 21
37+
it.options.release = 17
3838
}
3939

4040
java {
@@ -43,8 +43,8 @@ java {
4343
// If you remove this line, sources will not be generated.
4444
withSourcesJar()
4545

46-
sourceCompatibility = JavaVersion.VERSION_21
47-
targetCompatibility = JavaVersion.VERSION_21
46+
sourceCompatibility = JavaVersion.VERSION_17
47+
targetCompatibility = JavaVersion.VERSION_17
4848
}
4949

5050
jar {

0 commit comments

Comments
 (0)