Skip to content

Commit dcbd67a

Browse files
committed
Upgrade dependencies
1 parent 09a2246 commit dcbd67a

File tree

2 files changed

+36
-16
lines changed

2 files changed

+36
-16
lines changed

r2dbc-mysql/pom.xml

+34-14
Original file line numberDiff line numberDiff line change
@@ -75,18 +75,19 @@
7575
<maven.surefire.skip>false</maven.surefire.skip>
7676

7777
<r2dbc-spi.version>1.0.0.RELEASE</r2dbc-spi.version>
78-
<reactor.version>2022.0.9</reactor.version>
79-
<assertj.version>3.24.2</assertj.version>
78+
<reactor.version>2022.0.16</reactor.version>
79+
<netty.version>4.1.106.Final</netty.version>
80+
<assertj.version>3.25.3</assertj.version>
8081
<jmh.version>1.37</jmh.version>
81-
<junit.version>5.10.1</junit.version>
82-
<logback.version>1.4.14</logback.version>
82+
<junit.version>5.10.2</junit.version>
83+
<logback.version>1.5.3</logback.version>
8384
<mockito.version>4.11.0</mockito.version>
84-
<mysql.version>8.2.0</mysql.version>
85-
<testcontainers.version>1.19.3</testcontainers.version>
85+
<mysql.version>8.3.0</mysql.version>
86+
<testcontainers.version>1.19.6</testcontainers.version>
8687
<hikari-cp.version>4.0.3</hikari-cp.version>
87-
<spring-framework.version>5.3.31</spring-framework.version>
88-
<jackson.version>2.16.0</jackson.version>
89-
<mbr.version>0.3.0.RELEASE</mbr.version>
88+
<spring-framework.version>5.3.32</spring-framework.version>
89+
<jackson.version>2.16.1</jackson.version>
90+
<mbr.version>0.4.0.RELEASE</mbr.version>
9091
<jsr305.version>3.0.2</jsr305.version>
9192
<zstd-jni.version>1.5.5-11</zstd-jni.version>
9293
<java-annotations.version>24.1.0</java-annotations.version>
@@ -102,6 +103,13 @@
102103
<type>pom</type>
103104
<scope>import</scope>
104105
</dependency>
106+
<dependency>
107+
<groupId>io.netty</groupId>
108+
<artifactId>netty-bom</artifactId>
109+
<version>${netty.version}</version>
110+
<type>pom</type>
111+
<scope>import</scope>
112+
</dependency>
105113
<dependency>
106114
<groupId>org.junit</groupId>
107115
<artifactId>junit-bom</artifactId>
@@ -145,7 +153,19 @@
145153
</dependency>
146154
<dependency>
147155
<groupId>io.projectreactor.netty</groupId>
148-
<artifactId>reactor-netty</artifactId>
156+
<artifactId>reactor-netty-core</artifactId>
157+
</dependency>
158+
<dependency>
159+
<groupId>io.netty</groupId>
160+
<artifactId>netty-transport-native-epoll</artifactId>
161+
<classifier>linux-x86_64</classifier>
162+
<optional>true</optional>
163+
</dependency>
164+
<dependency>
165+
<groupId>io.netty</groupId>
166+
<artifactId>netty-transport-native-kqueue</artifactId>
167+
<classifier>osx-x86_64</classifier>
168+
<optional>true</optional>
149169
</dependency>
150170
<dependency>
151171
<groupId>io.r2dbc</groupId>
@@ -305,7 +325,7 @@
305325
<plugin>
306326
<groupId>org.apache.maven.plugins</groupId>
307327
<artifactId>maven-compiler-plugin</artifactId>
308-
<version>3.11.0</version>
328+
<version>3.12.1</version>
309329
<configuration>
310330
<compilerArgs>
311331
<arg>-Xlint:all</arg>
@@ -379,7 +399,7 @@
379399
<plugin>
380400
<groupId>org.apache.maven.plugins</groupId>
381401
<artifactId>maven-surefire-plugin</artifactId>
382-
<version>3.2.3</version>
402+
<version>3.2.5</version>
383403
<configuration>
384404
<runOrder>random</runOrder>
385405
<includes>
@@ -395,7 +415,7 @@
395415
<plugin>
396416
<groupId>org.apache.maven.plugins</groupId>
397417
<artifactId>maven-failsafe-plugin</artifactId>
398-
<version>3.2.3</version>
418+
<version>3.2.5</version>
399419
<executions>
400420
<execution>
401421
<goals>
@@ -488,7 +508,7 @@
488508
<plugin>
489509
<groupId>org.codehaus.mojo</groupId>
490510
<artifactId>exec-maven-plugin</artifactId>
491-
<version>3.1.1</version>
511+
<version>3.2.0</version>
492512
<executions>
493513
<execution>
494514
<id>run-benchmarks</id>

test-native-image/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<maven.compiler.target>8</maven.compiler.target>
1616
<skipNativeImage>true</skipNativeImage>
1717

18-
<reactor.version>2022.0.9</reactor.version>
18+
<reactor.version>2022.0.16</reactor.version>
1919
<r2dbc-spi.version>1.0.0.RELEASE</r2dbc-spi.version>
20-
<graalvm.version>21.2.0</graalvm.version>
20+
<graalvm.version>20.3.13</graalvm.version>
2121
</properties>
2222

2323
<dependencies>

0 commit comments

Comments
 (0)