Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mirromutth committed Mar 5, 2024
1 parent 09a2246 commit dcbd67a
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 16 deletions.
48 changes: 34 additions & 14 deletions r2dbc-mysql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,18 +75,19 @@
<maven.surefire.skip>false</maven.surefire.skip>

<r2dbc-spi.version>1.0.0.RELEASE</r2dbc-spi.version>
<reactor.version>2022.0.9</reactor.version>
<assertj.version>3.24.2</assertj.version>
<reactor.version>2022.0.16</reactor.version>
<netty.version>4.1.106.Final</netty.version>
<assertj.version>3.25.3</assertj.version>
<jmh.version>1.37</jmh.version>
<junit.version>5.10.1</junit.version>
<logback.version>1.4.14</logback.version>
<junit.version>5.10.2</junit.version>
<logback.version>1.5.3</logback.version>
<mockito.version>4.11.0</mockito.version>
<mysql.version>8.2.0</mysql.version>
<testcontainers.version>1.19.3</testcontainers.version>
<mysql.version>8.3.0</mysql.version>
<testcontainers.version>1.19.6</testcontainers.version>
<hikari-cp.version>4.0.3</hikari-cp.version>
<spring-framework.version>5.3.31</spring-framework.version>
<jackson.version>2.16.0</jackson.version>
<mbr.version>0.3.0.RELEASE</mbr.version>
<spring-framework.version>5.3.32</spring-framework.version>
<jackson.version>2.16.1</jackson.version>
<mbr.version>0.4.0.RELEASE</mbr.version>
<jsr305.version>3.0.2</jsr305.version>
<zstd-jni.version>1.5.5-11</zstd-jni.version>
<java-annotations.version>24.1.0</java-annotations.version>
Expand All @@ -102,6 +103,13 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>${netty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
Expand Down Expand Up @@ -145,7 +153,19 @@
</dependency>
<dependency>
<groupId>io.projectreactor.netty</groupId>
<artifactId>reactor-netty</artifactId>
<artifactId>reactor-netty-core</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
<classifier>linux-x86_64</classifier>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-kqueue</artifactId>
<classifier>osx-x86_64</classifier>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.r2dbc</groupId>
Expand Down Expand Up @@ -305,7 +325,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.12.1</version>
<configuration>
<compilerArgs>
<arg>-Xlint:all</arg>
Expand Down Expand Up @@ -379,7 +399,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.3</version>
<version>3.2.5</version>
<configuration>
<runOrder>random</runOrder>
<includes>
Expand All @@ -395,7 +415,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.2.3</version>
<version>3.2.5</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -488,7 +508,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.1</version>
<version>3.2.0</version>
<executions>
<execution>
<id>run-benchmarks</id>
Expand Down
4 changes: 2 additions & 2 deletions test-native-image/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<maven.compiler.target>8</maven.compiler.target>
<skipNativeImage>true</skipNativeImage>

<reactor.version>2022.0.9</reactor.version>
<reactor.version>2022.0.16</reactor.version>
<r2dbc-spi.version>1.0.0.RELEASE</r2dbc-spi.version>
<graalvm.version>21.2.0</graalvm.version>
<graalvm.version>20.3.13</graalvm.version>
</properties>

<dependencies>
Expand Down

0 comments on commit dcbd67a

Please sign in to comment.