Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Base image - Dockerfile.base
FROM arm64v8/ubuntu:25.04

ARG JDK_VERSION=24
ARG JDK_VERSION=25

# Install prerequisites
RUN apt-get update && apt-get install -y \
Expand All @@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y \
maven \
&& rm -rf /var/lib/apt/lists/*

RUN wget "https://download.java.net/java/early_access/jdk24/33/GPL/openjdk-24-ea+33_linux-aarch64_bin.tar.gz" -O jdk.tar.gz && \
RUN wget "https://download.java.net/java/GA/jdk25/bd75d5f9689641da8e1daabeccb5528b/36/GPL/openjdk-25_linux-aarch64_bin.tar.gz" -O jdk.tar.gz && \
mkdir -p /usr/lib/jvm && \
tar -xzf jdk.tar.gz -C /usr/lib/jvm && \
rm jdk.tar.gz
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
</dependencies>

<properties>
<maven.compiler.source>24</maven.compiler.source>
<maven.compiler.target>24</maven.compiler.target>
<maven.compiler.source>25</maven.compiler.source>
<maven.compiler.target>25</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down