Skip to content

Commit

Permalink
Reduce minimum version even more, compile with java 17 on workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
xirreal committed May 3, 2024
1 parent 3742404 commit 32fefa2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ processResources {
}

tasks.withType(JavaCompile).configureEach {
it.options.release = 21
it.options.release = 17
}

java {
Expand All @@ -43,8 +43,8 @@ java {
// If you remove this line, sources will not be generated.
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

jar {
Expand Down

0 comments on commit 32fefa2

Please sign in to comment.