Skip to content

Commit

Permalink
Merge pull request #1043 from webauthn4j/set-target-version-java-11-a…
Browse files Browse the repository at this point in the history
…gain

Set target version Java 11 again
  • Loading branch information
ynojima authored Nov 8, 2024
2 parents ff17d07 + 6f462e0 commit 3b170bc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ subprojects {
apply(plugin = "maven-publish")
apply(plugin = "jacoco")

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11 // Although webauthn4j uses JDK 15+ API to support EdDSA, keep target version 11 to support JDK11 users who don't need EdDSA.
}

tasks.test {
useJUnitPlatform()
testLogging {
Expand Down

0 comments on commit 3b170bc

Please sign in to comment.