Skip to content

Commit 47893ea

Browse files
committed
tech: update to Java 25
1 parent 13d27e4 commit 47893ea

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v5
20-
- name: 'Set up JDK 24'
20+
- name: 'Set up JDK 25'
2121
uses: actions/setup-java@v5
2222
with:
2323
distribution: 'temurin'
24-
java-version: '24'
24+
java-version: '25'
2525
cache: 'maven'
2626
- name: 'Build'
2727
run: ./mvnw clean package

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM eclipse-temurin:24-alpine
1+
FROM eclipse-temurin:25-alpine
22
RUN mkdir /opt/app
33
COPY docker-entrypoint.sh /opt/app/docker-entrypoint.sh
44
COPY target/oauth2-server.jar /opt/app/application.jar

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
</dependencyManagement>
3838

3939
<properties>
40-
<java.version>24</java.version>
40+
<java.version>25</java.version>
4141
<maven.compiler.release>${java.version}</maven.compiler.release>
4242
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4343
<start-class>com.gw2auth.oauth2.server.Application</start-class>

0 commit comments

Comments
 (0)