Skip to content

Commit

Permalink
Merge pull request #57 from sdavids/users/sdavids/feat/release-11
Browse files Browse the repository at this point in the history
Set release option of compileJava to Java 11
  • Loading branch information
adoble committed Sep 1, 2024
2 parents d849486 + 00ed622 commit c1b1c75
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ application {
mainClass = "org.doble.adr.ADR"
}

tasks.named<JavaCompile>("compileJava") {
options.apply {
release = 11
}
}

tasks.withType<AbstractArchiveTask>().configureEach {
isPreserveFileTimestamps = false
isReproducibleFileOrder = true
Expand Down

0 comments on commit c1b1c75

Please sign in to comment.