Skip to content

Commit ae6dd36

Browse files
committed
Added support for Java 25.
Signed-off-by: kilo52 <[email protected]>
1 parent d15739f commit ae6dd36

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

java/init.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright (C) 2024 Raven Computing
2+
# Copyright (C) 2025 Raven Computing
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -215,6 +215,7 @@ add_lang_version "1.8" "Java 8";
215215
add_lang_version "11" "Java 11";
216216
add_lang_version "17" "Java 17";
217217
add_lang_version "21" "Java 21";
218+
add_lang_version "25" "Java 25";
218219

219220
select_project_type "java" "Java";
220221
selected_name="$FORM_PROJECT_TYPE_NAME";

share/java/docker/Dockerfile-build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ ARG DEBIAN_FRONTEND=noninteractive
1313

1414
# Environment
1515
ENV TZ=UTC
16-
ENV JAVA_HOME=/usr/lib/jvm/java-21-openjdk-amd64
16+
ENV JAVA_HOME=/usr/lib/jvm/java-25-openjdk-amd64
1717

1818
# APT dependencies
1919
RUN apt-get -y update && apt-get -y --no-install-recommends install \
20-
openjdk-21-jdk \
20+
openjdk-25-jdk \
2121
maven
2222

2323
${{VAR_DOCKERFILE_BUILD_MKDOCS}}

tests/resources/test_java_executable.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ project.language=Java
77
project.type=Executable program
88
project.integration.docs=Yes
99
project.integration.docker=No
10-
java.version=Java 21
10+
java.version=Java 25
1111
java.namespace=raven.mynsa.mynsb

0 commit comments

Comments
 (0)