Skip to content

Commit

Permalink
Update to Java 23 (#429)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbusche authored Sep 22, 2024
1 parent 28bea74 commit 21e6bc9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/daily-standings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 22 ]
java-version: [ 23 ]
os: [ ubuntu-latest ]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 22 ]
java-version: [ 23 ]
os: [ ubuntu-latest, macos-latest, windows-latest ]

steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Generating standings on demand

- Download jar file from the [latest release](https://github.com/mrbusche/trap-scoring/releases)
- You will need [Java 22](https://adoptium.net/) to run the jar file
- You will need [Java 23](https://adoptium.net/) to run the jar file
- Open command prompt to directory with downloaded jar file
- Run `java -jar trap-6.2.0.jar` (make sure you have the correct filename from the release)
- There will be output as the process generates the file
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ plugins {
}

group = "com.trap-scoring"
version = "6.2.0"
version = "7.0.0"

java.sourceCompatibility = JavaVersion.VERSION_22
java.targetCompatibility = JavaVersion.VERSION_22
java.sourceCompatibility = JavaVersion.VERSION_23
java.targetCompatibility = JavaVersion.VERSION_23

repositories {
mavenCentral()
Expand Down

0 comments on commit 21e6bc9

Please sign in to comment.