Skip to content

Commit ff3d110

Browse files
authored
Bumped version for Java, Jooby, Maven and other libraries/dependencies (#8796)
1 parent c47af75 commit ff3d110

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

frameworks/Java/jooby/jooby-jetty.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM maven:3.9.0-eclipse-temurin-17
1+
FROM maven:3.9.6-eclipse-temurin-21-jammy
22
WORKDIR /jooby
33
COPY pom.xml pom.xml
44
COPY src src

frameworks/Java/jooby/jooby-mvc.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM maven:3.9.0-eclipse-temurin-17
1+
FROM maven:3.9.6-eclipse-temurin-21-jammy
22
WORKDIR /jooby
33
COPY pom.xml pom.xml
44
COPY src src

frameworks/Java/jooby/jooby-netty.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM maven:3.9.0-eclipse-temurin-17
1+
FROM maven:3.9.6-eclipse-temurin-21-jammy
22
WORKDIR /jooby
33
COPY pom.xml pom.xml
44
COPY src src

frameworks/Java/jooby/jooby-pgclient.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM maven:3.9.0-eclipse-temurin-17
1+
FROM maven:3.9.6-eclipse-temurin-21-jammy
22
WORKDIR /jooby
33
COPY pom.xml pom.xml
44
COPY src src

frameworks/Java/jooby/jooby.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM maven:3.9.0-eclipse-temurin-17
1+
FROM maven:3.9.6-eclipse-temurin-21-jammy
22
WORKDIR /jooby
33
COPY pom.xml pom.xml
44
COPY src src

frameworks/Java/jooby/pom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
<name>jooby</name>
1212

1313
<properties>
14-
<jooby.version>3.0.5</jooby.version>
15-
<dsl-json.version>1.10.0</dsl-json.version>
14+
<jooby.version>3.0.8</jooby.version>
15+
<dsl-json.version>2.0.2</dsl-json.version>
1616
<postgresql.version>42.7.2</postgresql.version>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18-
<maven.compiler.source>17</maven.compiler.source>
19-
<maven.compiler.target>17</maven.compiler.target>
18+
<maven.compiler.source>21</maven.compiler.source>
19+
<maven.compiler.target>21</maven.compiler.target>
2020

2121
<!-- Startup class -->
2222
<application.class>com.techempower.App</application.class>
@@ -41,7 +41,7 @@
4141
<dependency>
4242
<groupId>com.mysql</groupId>
4343
<artifactId>mysql-connector-j</artifactId>
44-
<version>8.0.33</version>
44+
<version>8.3.0</version>
4545
</dependency>
4646

4747

@@ -55,13 +55,13 @@
5555
<dependency>
5656
<groupId>io.vertx</groupId>
5757
<artifactId>vertx-pg-client</artifactId>
58-
<version>4.4.4</version>
58+
<version>4.5.4</version>
5959
</dependency>
6060

6161
<!-- json -->
6262
<dependency>
6363
<groupId>com.dslplatform</groupId>
64-
<artifactId>dsl-json-java8</artifactId>
64+
<artifactId>dsl-json</artifactId>
6565
<version>${dsl-json.version}</version>
6666
</dependency>
6767
</dependencies>
@@ -72,7 +72,7 @@
7272
<plugin>
7373
<groupId>org.codehaus.mojo</groupId>
7474
<artifactId>build-helper-maven-plugin</artifactId>
75-
<version>3.3.0</version>
75+
<version>3.5.0</version>
7676
<executions>
7777
<execution>
7878
<id>add-source</id>
@@ -91,7 +91,7 @@
9191
<plugin>
9292
<groupId>com.fizzed</groupId>
9393
<artifactId>rocker-maven-plugin</artifactId>
94-
<version>1.3.0</version>
94+
<version>1.4.0</version>
9595
<executions>
9696
<execution>
9797
<id>generate-rocker-templates</id>
@@ -110,7 +110,7 @@
110110
<plugin>
111111
<groupId>org.apache.maven.plugins</groupId>
112112
<artifactId>maven-compiler-plugin</artifactId>
113-
<version>3.11.0</version>
113+
<version>3.12.1</version>
114114
<configuration>
115115
<annotationProcessorPaths>
116116
<path>
@@ -120,7 +120,7 @@
120120
</path>
121121
<path>
122122
<groupId>com.dslplatform</groupId>
123-
<artifactId>dsl-json-java8</artifactId>
123+
<artifactId>dsl-json</artifactId>
124124
<version>${dsl-json.version}</version>
125125
</path>
126126
</annotationProcessorPaths>
@@ -130,7 +130,7 @@
130130
<plugin>
131131
<groupId>org.apache.maven.plugins</groupId>
132132
<artifactId>maven-shade-plugin</artifactId>
133-
<version>3.4.1</version>
133+
<version>3.5.2</version>
134134
<executions>
135135
<execution>
136136
<id>uber-jar</id>

0 commit comments

Comments
 (0)