Skip to content

Commit

Permalink
chore: update to openjdk 25-ea
Browse files Browse the repository at this point in the history
  • Loading branch information
sureshg committed Jan 4, 2025
1 parent 1a44faf commit 70dabca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ $ ./scripts/graalvm-ce-dev.sh

# Install GraalVM CE
$ curl -s "https://get.sdkman.io" | bash
$ sdk i java 22.0.1-graalce
$ sdk i java 25.0.1-graalce
```

### Build
Expand Down Expand Up @@ -56,7 +56,7 @@ $ java --enable-preview \
$ jdeps -q \
-R \
--ignore-missing-deps \
--multi-release=24 \
--multi-release=25 \
build/libs/native-image-playground-*-all.jar

# Build native image from modular jars
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
java = "24"
java = "25"
kotlin = "2.1.0"
kotlin-ksp = "2.1.0-1.0.29"
kotlin-jvmtarget = "21"
Expand Down
2 changes: 1 addition & 1 deletion scripts/graalvm-ce-dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# set -u won't work for sdkman
set -e

jdk_version=${1:-24}
jdk_version=${1:-25}
extn="tar.gz"

# Find OS type
Expand Down

0 comments on commit 70dabca

Please sign in to comment.