Skip to content

Commit

Permalink
Move to Java 11.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattl-netflix committed Jun 25, 2024
1 parent 9b8300e commit 485caf1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ allprojects {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
}
}

sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}

0 comments on commit 485caf1

Please sign in to comment.