Skip to content

Commit 7290065

Browse files
committed
Use and require Java 23
1 parent e86bedf commit 7290065

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: [22, 23-ea]
27+
java-version: [23, 24-ea]
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-
22
1+
23

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 22+, 64-bit
6+
* Java 23+, 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 22. Note that higher version of Java have not been
24+
This project requires Java 23. 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
@@ -16,7 +16,7 @@ Consider the following requirements for your Trino Gateway installation.
1616

1717
### Java
1818

19-
Trino Gateway requires a Java 22 runtime. Older versions of Java can not be
19+
Trino Gateway requires a Java 23 runtime. Older versions of Java can not be
2020
used. Newer versions might work but are not tested.
2121

2222
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>22</project.build.targetJdk>
43-
<air.java.version>22</air.java.version>
42+
<project.build.targetJdk>23</project.build.targetJdk>
43+
<air.java.version>23</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.release.preparation-goals>clean verify -DskipTests</air.release.preparation-goals>

0 commit comments

Comments
 (0)