Skip to content

Commit f69004b

Browse files
committed
Update library, jdk, etc
Signed-off-by: Seonghyeon Cho <[email protected]>
1 parent 43edfc1 commit f69004b

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

frameworks/Java/armeria/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ This is the armeria portion of a [benchmarking test suite](../) comparing a vari
44

55
## Infrastructure Software Versions
66

7-
* [Armeria 0.71.1](https://line.github.io/armeria/)
8-
* [HikariCP 2.7.8](https://github.com/brettwooldridge/HikariCP)
9-
* [Postgresql 42.1.4](https://jdbc.postgresql.org/)
10-
* [Mustache 0.9.5](https://mustache.github.io/)
7+
* [Armeria 1.33.4](https://armeria.dev/)
8+
* [HikariCP 7.0.2](https://github.com/brettwooldridge/HikariCP)
9+
* [Postgresql 42.7.8](https://jdbc.postgresql.org/)
10+
* [Mustache 0.9.14](https://mustache.github.io/)
1111

1212
## Source for Tests
1313

frameworks/Java/armeria/armeria.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM maven:3.6.1-jdk-11-slim as maven
1+
FROM maven:3.9.11-eclipse-temurin-25-alpine as maven
22
WORKDIR /armeria
33
COPY src src
44
COPY pom.xml pom.xml
55
RUN mvn package -q
66

7-
FROM openjdk:11.0.3-jdk-slim
7+
FROM eclipse-temurin:25-jre-alpine
88
WORKDIR /armeria
99
COPY --from=maven /armeria/target/hello-1.0-SNAPSHOT.jar app.jar
1010

frameworks/Java/armeria/pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212

1313
<properties>
1414
<!-- Compiler options -->
15-
<maven.compiler.source>11</maven.compiler.source>
16-
<maven.compiler.target>11</maven.compiler.target>
15+
<maven.compiler.source>25</maven.compiler.source>
16+
<maven.compiler.target>25</maven.compiler.target>
1717

1818
<!-- Dependency versions -->
19-
<armeria.version>1.24.3</armeria.version>
19+
<armeria.version>1.33.4</armeria.version>
2020
</properties>
2121

2222
<dependencies>
@@ -28,22 +28,22 @@
2828
<dependency>
2929
<groupId>org.apache.logging.log4j</groupId>
3030
<artifactId>log4j-slf4j-impl</artifactId>
31-
<version>2.12.1</version>
31+
<version>2.25.2</version>
3232
</dependency>
3333
<dependency>
3434
<groupId>org.postgresql</groupId>
3535
<artifactId>postgresql</artifactId>
36-
<version>42.7.2</version>
36+
<version>42.7.8</version>
3737
</dependency>
3838
<dependency>
3939
<groupId>com.github.spullara.mustache.java</groupId>
4040
<artifactId>compiler</artifactId>
41-
<version>0.9.6</version>
41+
<version>0.9.14</version>
4242
</dependency>
4343
<dependency>
4444
<groupId>com.zaxxer</groupId>
4545
<artifactId>HikariCP</artifactId>
46-
<version>3.3.1</version>
46+
<version>7.0.2</version>
4747
<scope>compile</scope>
4848
</dependency>
4949
</dependencies>
@@ -53,7 +53,7 @@
5353
<plugin>
5454
<groupId>org.apache.maven.plugins</groupId>
5555
<artifactId>maven-compiler-plugin</artifactId>
56-
<version>3.8.0</version>
56+
<version>3.14.1</version>
5757
<configuration>
5858
<debug>false</debug>
5959
</configuration>
@@ -62,7 +62,7 @@
6262
<plugin>
6363
<groupId>org.springframework.boot</groupId>
6464
<artifactId>spring-boot-maven-plugin</artifactId>
65-
<version>2.1.8.RELEASE</version>
65+
<version>3.5.6</version>
6666
<executions>
6767
<execution>
6868
<goals>

0 commit comments

Comments
 (0)