Skip to content

Commit

Permalink
build: set JDK version 11 since most gradle plugins depend on 11 now
Browse files Browse the repository at this point in the history
- fixes #4
  • Loading branch information
manticore-projects committed Feb 24, 2024
1 parent 8245aa6 commit 30800fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ configurations.configureEach {
java {
withSourcesJar()
withJavadocJar()
sourceCompatibility(JavaVersion.VERSION_1_8)
targetCompatibility(JavaVersion.VERSION_1_8)
sourceCompatibility(JavaVersion.VERSION_11)
targetCompatibility(JavaVersion.VERSION_11)

// needed for XML-Doclet to work (since Doclet changed again with Java 13)
toolchain {
Expand Down

0 comments on commit 30800fb

Please sign in to comment.