Skip to content

Commit

Permalink
Update base Java version configuration to include JDK 21
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed May 8, 2024
1 parent 6bd2079 commit e308d47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/org/incendo/cloudbuildlogic/BasePlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ class BasePlugin : Plugin<Project> {

target.extensions.configure(IndraExtension::class) {
javaVersions {
minimumToolchain(17)
minimumToolchain(21)
target(8)
testWith().set(setOf(8, 11, 17))
testWith().set(setOf(8, 11, 17, 21))
}
}

Expand Down

0 comments on commit e308d47

Please sign in to comment.