Skip to content

Commit

Permalink
bump to java 21 (#343)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbusche authored Nov 15, 2023
1 parent 208b704 commit f40e915
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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: [ 17, 21 ]
java-version: [ 21 ]
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 17](https://adoptium.net/) to run the jar file
- You will need [Java 21](https://adoptium.net/) to run the jar file
- Open command prompt to directory with downloaded jar file
- Run `java -jar trap-5.1.2.jar` (make sure you have the correct filename from the release)
- There will be output as the process generates the file
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ plugins {
group = "com.trap-scoring"
version = "5.1.2"

java.sourceCompatibility = JavaVersion.VERSION_17
java.targetCompatibility = JavaVersion.VERSION_17
java.sourceCompatibility = JavaVersion.VERSION_21
java.targetCompatibility = JavaVersion.VERSION_21

repositories {
mavenCentral()
Expand Down

0 comments on commit f40e915

Please sign in to comment.