|
1 | | -<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 3 |
|
6 | 4 | <modelVersion>4.0.0</modelVersion> |
7 | 5 |
|
|
33 | 31 |
|
34 | 32 | <!-- databases and jdbc drivers --> |
35 | 33 | <!-- note that these currently do not control the versions of databases used via Testcontainers for testing --> |
36 | | - <db2.version>12.1.0.0</db2.version> |
| 34 | + <db2.version>12.1.2.0</db2.version> |
37 | 35 | <h2.version>2.3.232</h2.version> |
38 | 36 | <hikari.version>5.1.0</hikari.version> |
39 | 37 | <hsqldb.version>2.7.3</hsqldb.version> |
40 | | - <mariadb-java-client.version>3.5.3</mariadb-java-client.version> |
41 | | - <mssql.version>12.10.0.jre11</mssql.version> |
42 | | - <mysql-connector-java.version>9.2.0</mysql-connector-java.version> |
43 | | - <postgresql.version>42.7.5</postgresql.version> |
| 38 | + <mariadb-java-client.version>3.5.4</mariadb-java-client.version> |
| 39 | + <mssql.version>12.10.1.jre11</mssql.version> |
| 40 | + <mysql-connector-java.version>9.3.0</mysql-connector-java.version> |
| 41 | + <postgresql.version>42.7.7</postgresql.version> |
44 | 42 | <oracle.version>23.8.0.25.04</oracle.version> |
45 | 43 |
|
46 | 44 | <!-- R2DBC driver dependencies--> |
47 | 45 | <r2dbc-postgresql.version>1.0.7.RELEASE</r2dbc-postgresql.version> |
48 | 46 | <r2dbc-h2.version>1.0.0.RELEASE</r2dbc-h2.version> |
49 | | - <r2dbc-mariadb.version>1.1.4</r2dbc-mariadb.version> |
| 47 | + <r2dbc-mariadb.version>1.3.0</r2dbc-mariadb.version> |
50 | 48 | <r2dbc-mssql.version>1.0.2.RELEASE</r2dbc-mssql.version> |
51 | 49 | <r2dbc-mysql.version>1.4.1</r2dbc-mysql.version> |
52 | 50 | <oracle-r2dbc.version>1.3.0</oracle-r2dbc.version> |
|
191 | 189 | <plugin> |
192 | 190 | <groupId>org.apache.maven.plugins</groupId> |
193 | 191 | <artifactId>maven-surefire-plugin</artifactId> |
| 192 | + <configuration> |
| 193 | + <systemProperties> |
| 194 | + <io.netty.allocator.type>pooled</io.netty.allocator.type> |
| 195 | + </systemProperties> |
| 196 | + </configuration> |
194 | 197 | <executions> |
195 | 198 | <execution> |
196 | 199 | <id>default-test</id> |
|
211 | 214 | <plugin> |
212 | 215 | <groupId>org.apache.maven.plugins</groupId> |
213 | 216 | <artifactId>maven-failsafe-plugin</artifactId> |
| 217 | + <configuration> |
| 218 | + <systemProperties> |
| 219 | + <io.netty.allocator.type>pooled</io.netty.allocator.type> |
| 220 | + </systemProperties> |
| 221 | + </configuration> |
214 | 222 | <executions> |
215 | 223 | <execution> |
216 | 224 | <id>default-test</id> |
|
0 commit comments