Skip to content

Commit 170e1de

Browse files
committed
Update to use and require Java 25
1 parent 3267d06 commit 170e1de

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
java-version: [24]
27+
java-version: [25]
2828
timeout-minutes: 20
2929
steps:
3030
- name: Checkout source

.java-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.0.2+12
1+
25

docs/development.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Build requirements
44

55
* Mac OS X or Linux
6-
* Java 24+, 64-bit
6+
* Java 25+, 64-bit
77
* Docker
88

99
#### Running Trino Gateway in your IDE
@@ -21,7 +21,7 @@ or execute the following command:
2121

2222
#### Locally
2323

24-
This project requires Java 24. Note that higher version of Java have not been
24+
This project requires Java 25. Note that higher version of Java have not been
2525
verified and may run into unexpected issues.
2626

2727
Run `./mvnw clean install` to build `trino-gateway`. VM options required for

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Consider the following requirements for your Trino Gateway installation.
2121

2222
### Java
2323

24-
Trino Gateway requires a Java 24 runtime. Older versions of Java can not be
24+
Trino Gateway requires a Java 25 runtime. Older versions of Java can not be
2525
used. Newer versions might work but are not tested.
2626

2727
Verify the Java version on your system with `java -version`.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
<properties>
4040
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4141
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
42-
<project.build.targetJdk>24</project.build.targetJdk>
43-
<air.java.version>24.0.2</air.java.version>
42+
<project.build.targetJdk>25</project.build.targetJdk>
43+
<air.java.version>25.0.0</air.java.version>
4444
<air.check.skip-spotbugs>true</air.check.skip-spotbugs>
4545
<air.check.skip-pmd>true</air.check.skip-pmd>
4646
<air.modernizer.java-version>8</air.modernizer.java-version>

0 commit comments

Comments
 (0)