|
75 | 75 | <maven.surefire.skip>false</maven.surefire.skip> |
76 | 76 |
|
77 | 77 | <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> |
80 | 81 | <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> |
83 | 84 | <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> |
86 | 87 | <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> |
90 | 91 | <jsr305.version>3.0.2</jsr305.version> |
91 | 92 | <zstd-jni.version>1.5.5-11</zstd-jni.version> |
92 | 93 | <java-annotations.version>24.1.0</java-annotations.version> |
|
102 | 103 | <type>pom</type> |
103 | 104 | <scope>import</scope> |
104 | 105 | </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> |
105 | 113 | <dependency> |
106 | 114 | <groupId>org.junit</groupId> |
107 | 115 | <artifactId>junit-bom</artifactId> |
|
145 | 153 | </dependency> |
146 | 154 | <dependency> |
147 | 155 | <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> |
149 | 169 | </dependency> |
150 | 170 | <dependency> |
151 | 171 | <groupId>io.r2dbc</groupId> |
|
305 | 325 | <plugin> |
306 | 326 | <groupId>org.apache.maven.plugins</groupId> |
307 | 327 | <artifactId>maven-compiler-plugin</artifactId> |
308 | | - <version>3.11.0</version> |
| 328 | + <version>3.12.1</version> |
309 | 329 | <configuration> |
310 | 330 | <compilerArgs> |
311 | 331 | <arg>-Xlint:all</arg> |
|
379 | 399 | <plugin> |
380 | 400 | <groupId>org.apache.maven.plugins</groupId> |
381 | 401 | <artifactId>maven-surefire-plugin</artifactId> |
382 | | - <version>3.2.3</version> |
| 402 | + <version>3.2.5</version> |
383 | 403 | <configuration> |
384 | 404 | <runOrder>random</runOrder> |
385 | 405 | <includes> |
|
395 | 415 | <plugin> |
396 | 416 | <groupId>org.apache.maven.plugins</groupId> |
397 | 417 | <artifactId>maven-failsafe-plugin</artifactId> |
398 | | - <version>3.2.3</version> |
| 418 | + <version>3.2.5</version> |
399 | 419 | <executions> |
400 | 420 | <execution> |
401 | 421 | <goals> |
|
488 | 508 | <plugin> |
489 | 509 | <groupId>org.codehaus.mojo</groupId> |
490 | 510 | <artifactId>exec-maven-plugin</artifactId> |
491 | | - <version>3.1.1</version> |
| 511 | + <version>3.2.0</version> |
492 | 512 | <executions> |
493 | 513 | <execution> |
494 | 514 | <id>run-benchmarks</id> |
|
0 commit comments