Skip to content

Commit

Permalink
Merge pull request #7 from ethauvin/main
Browse files Browse the repository at this point in the history
Switched to JDK 20 for testing
  • Loading branch information
ethauvin authored Aug 22, 2023
2 parents c75626e + 278e1ff commit f71f92b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bld.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:

strategy:
matrix:
java-version: [ 17, 19 ]
java-version: [ 17, 20 ]

steps:
- name: Checkout source repository
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ public class MyappBuild extends Project {
scope(test)
.include(dependency("org.junit.jupiter",
"junit-jupiter",
version(5,9,2)))
version(5,10,0)))
.include(dependency("org.junit.platform",
"junit-platform-console-standalone",
version(1,9,2)));
version(1,10,0)));
}

public static void main(String[] args) {
Expand Down

0 comments on commit f71f92b

Please sign in to comment.