Skip to content

Commit

Permalink
Examples: switch to JDK 21
Browse files Browse the repository at this point in the history
  • Loading branch information
cagix committed Mar 6, 2024
1 parent 5f40e03 commit c8cf22f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hello-world/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
testImplementation 'junit:junit:4.13.2'
}

sourceCompatibility = 17
sourceCompatibility = 21

test {
useJUnit()
Expand Down
2 changes: 1 addition & 1 deletion observer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
testImplementation "org.powermock:powermock-api-mockito2:2.+"
}

sourceCompatibility = 17
sourceCompatibility = 21

test {
useJUnit()
Expand Down
4 changes: 2 additions & 2 deletions visitor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ repositories {

dependencies {
implementation "org.jetbrains:annotations:23.0.0"

testImplementation 'junit:junit:4.13.2'
testImplementation "org.powermock:powermock-module-junit4:2.+"
testImplementation "org.powermock:powermock-api-mockito2:2.+"
}

sourceCompatibility = 17
sourceCompatibility = 21

test {
useJUnit()
Expand Down

0 comments on commit c8cf22f

Please sign in to comment.