Skip to content

Commit c6e8320

Browse files
committed
Archive changes to 25
1 parent eed2dbe commit c6e8320

File tree

12 files changed

+25
-25
lines changed

12 files changed

+25
-25
lines changed

archive/class-initialization-examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In both examples we use the Jackson framework to parse a JSON file to determine
2020

2121
1. Download and install the latest GraalVM JDK using [SDKMAN!](https://sdkman.io/).
2222
```bash
23-
sdk install java 21.0.5-graal
23+
sdk install java 25-graal
2424
```
2525

2626
2. Download or clone the repository and navigate into the `class-initialization-examples` directory:

archive/javagdbnative/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
<maven.compiler.source>21</maven.compiler.source>
16-
<maven.compiler.target>21</maven.compiler.target>
15+
<maven.compiler.source>25</maven.compiler.source>
16+
<maven.compiler.target>25</maven.compiler.target>
1717
</properties>
1818

1919
<dependencies>

archive/js-java-async-helidon/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is a polyglot Helidon HTTP web service that demonstrates how multiple JavaS
66

77
1. Download and install the latest GraalVM JDK using [SDKMAN!](https://sdkman.io/).
88
```bash
9-
sdk install java 21.0.5-graal
9+
sdk install java 25-graal
1010
```
1111

1212
2. Download or clone the repository and navigate into the `js-java-async-helidon` directory:

archive/js-java-async-helidon/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
<artifactId>maven-compiler-plugin</artifactId>
4141
<version>3.8.1</version>
4242
<configuration>
43-
<source>17</source>
44-
<target>17</target>
43+
<source>25</source>
44+
<target>25</target>
4545
</configuration>
4646
</plugin>
4747
<plugin>
@@ -73,7 +73,7 @@
7373
</build>
7474

7575
<properties>
76-
<graalvm.version>23.1.1</graalvm.version>
76+
<graalvm.version>25.0.0</graalvm.version>
7777
</properties>
7878

7979
<dependencyManagement>

archive/multithreading-demo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The plugin also generates a report using the [Native Image Build Reports](https:
4444

4545
1. Download and install the latest GraalVM JDK using [SDKMAN!](https://sdkman.io/).
4646
```bash
47-
sdk install java 21.0.1-graal
47+
sdk install java 25-graal
4848
```
4949

5050
2. Download or clone the repository and navigate into the `multithreading-demo/multithreading-demo-oversized_` directory:

archive/multithreading-demo/multithreading-demo-improved/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
<properties>
1212
<native.maven.plugin.version>0.10.4</native.maven.plugin.version>
13-
<maven.compiler.source>21</maven.compiler.source>
14-
<maven.compiler.target>21</maven.compiler.target>
13+
<maven.compiler.source>25</maven.compiler.source>
14+
<maven.compiler.target>25</maven.compiler.target>
1515
</properties>
1616

1717
<dependencies>

archive/multithreading-demo/multithreading-demo-oversized/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
<properties>
1212
<native.maven.plugin.version>0.10.4</native.maven.plugin.version>
13-
<maven.compiler.source>21</maven.compiler.source>
14-
<maven.compiler.target>21</maven.compiler.target>
13+
<maven.compiler.source>25</maven.compiler.source>
14+
<maven.compiler.target>25</maven.compiler.target>
1515
</properties>
1616

1717
<dependencies>

archive/native-netty-plot/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ There is also the [Maven plugin for GraalVM Native Image building](https://graal
1414

1515
1. Download and install the latest GraalVM JDK using [SDKMAN!](https://sdkman.io/).
1616
```bash
17-
sdk install java 21.0.1-graal
17+
sdk install java 25-graal
1818
```
1919

2020
2. Download or clone the repository and navigate into the `native-netty-plot` directory:

archive/polyglot-chat-app/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ The application uses the Gradle build tool.
1111

1212
1. Download the latest GraalPy as described on [https://www.graalvm.org/python/](https://www.graalvm.org/python/). For example on Linux:
1313
```bash
14-
wget https://github.com/oracle/graalpython/releases/download/graal-23.1.1/graalpy-23.1.1-linux-amd64.tar.gz
15-
tar xzf graalpy-23.1.1-linux-amd64.tar.gz
14+
wget https://github.com/oracle/graalpython/releases/download/graal-25.0.0/graalpy-25.0.0-linux-amd64.tar.gz
15+
tar xzf graalpy-25.0.0-linux-amd64.tar.gz
1616
```
1717

1818
2. Install the required packages for this demo into the _resources_ directory:
1919
```bash
20-
graalpy-23.1.1-linux-amd64/bin/graalpy -m venv src/main/resources/venv
20+
graalpy-25.0.0-linux-amd64/bin/graalpy -m venv src/main/resources/venv
2121
src/main/resources/venv/bin/graalpy -m pip install nltk
2222
```
2323

archive/polyglot-chat-app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ dependencies {
3131

3232
implementation("jakarta.inject:jakarta.inject-api:2.0.1")
3333

34-
implementation("org.graalvm.sdk:graal-sdk:23.1.1")
35-
implementation("org.graalvm.polyglot:python:23.1.1")
36-
implementation("org.graalvm.sdk:nativeimage:23.1.1")
34+
implementation("org.graalvm.sdk:graal-sdk:25.0.0")
35+
implementation("org.graalvm.polyglot:python:25.0.0")
36+
implementation("org.graalvm.sdk:nativeimage:25.0.0")
3737
}
3838

3939

4040
application {
4141
mainClass.set("websocket.chat.Application")
4242
}
4343
java {
44-
sourceCompatibility = JavaVersion.toVersion("21")
45-
targetCompatibility = JavaVersion.toVersion("21")
44+
sourceCompatibility = JavaVersion.toVersion("25")
45+
targetCompatibility = JavaVersion.toVersion("25")
4646
}
4747

4848

0 commit comments

Comments
 (0)