Skip to content

update httpserver-robaho version #9418

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Mar 24, 2025
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM jelastic/maven:3.9.5-openjdk-21 as maven
FROM jelastic/maven:3.9.9-openjdk-23.0.1-almalinux-9 as maven
WORKDIR /httpserver-robaho
COPY pom.xml pom.xml
COPY src src
RUN mvn compile assembly:single -q

FROM openjdk:21-jdk-slim
FROM openjdk:23-jdk-slim
WORKDIR /httpserver-robaho
COPY --from=maven /httpserver-robaho/target/httpserver-robaho-1.0-jar-with-dependencies.jar app.jar

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM jelastic/maven:3.9.5-openjdk-21 as maven
FROM jelastic/maven:3.9.9-openjdk-23.0.1-almalinux-9 as maven
WORKDIR /httpserver-robaho
COPY pom.xml pom.xml
COPY src src
RUN mvn compile assembly:single -q

FROM openjdk:21-jdk-slim
FROM openjdk:23-jdk-slim
WORKDIR /httpserver-robaho
COPY --from=maven /httpserver-robaho/target/httpserver-robaho-1.0-jar-with-dependencies.jar app.jar

Expand Down
8 changes: 4 additions & 4 deletions frameworks/Java/httpserver-robaho/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<java.version>21</java.version>
<maven.compiler.source>23</maven.compiler.source>
<maven.compiler.target>23</maven.compiler.target>
<java.version>23</java.version>
</properties>
<dependencies>
<dependency>
Expand Down Expand Up @@ -40,7 +40,7 @@
<dependency>
<groupId>io.github.robaho</groupId>
<artifactId>httpserver</artifactId>
<version>1.0.17</version>
<version>1.0.23</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
Loading