From f1f1e04228ceda271a5724e3ba84e8e4e577f991 Mon Sep 17 00:00:00 2001 From: Matt Busche Date: Sat, 21 Sep 2024 19:45:56 -0500 Subject: [PATCH] Update to Java 23 --- .github/workflows/daily-standings.yml | 2 +- .github/workflows/gradle.yml | 2 +- README.md | 2 +- build.gradle.kts | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/daily-standings.yml b/.github/workflows/daily-standings.yml index 7725e5e..a7f1147 100644 --- a/.github/workflows/daily-standings.yml +++ b/.github/workflows/daily-standings.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java-version: [ 22 ] + java-version: [ 23 ] os: [ ubuntu-latest ] steps: diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 9fc2ff6..269125c 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -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: diff --git a/README.md b/README.md index 805d653..3c56c4f 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/build.gradle.kts b/build.gradle.kts index d88a66d..cc80cce 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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()