Skip to content

Commit 47e7de0

Browse files
committed
Upgrade dependencies.
[#544] Signed-off-by: Mark Paluch <[email protected]>
1 parent fe652ff commit 47e7de0

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

pom.xml

+11-11
Original file line numberDiff line numberDiff line change
@@ -38,21 +38,21 @@
3838
<hikari-cp.version>4.0.3</hikari-cp.version>
3939
<java.version>1.8</java.version>
4040
<jsr305.version>3.0.2</jsr305.version>
41-
<junit.version>5.8.2</junit.version>
41+
<junit.version>5.9.0</junit.version>
4242
<jmh.version>1.35</jmh.version>
4343
<mbr.version>0.3.0.RELEASE</mbr.version>
4444
<logback.version>1.2.9</logback.version>
45-
<mockito.version>4.6.1</mockito.version>
46-
<netty.version>4.1.78.Final</netty.version>
47-
<postgresql.version>42.4.1</postgresql.version>
45+
<mockito.version>4.7.0</mockito.version>
46+
<netty.version>4.1.80.Final</netty.version>
47+
<postgresql.version>42.5.0</postgresql.version>
4848
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4949
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
5050
<r2dbc-spi.version>1.0.0.RELEASE</r2dbc-spi.version>
5151
<reactor.version>2022.0.0-M2</reactor.version>
5252
<scram-client.version>2.1</scram-client.version>
53-
<spring-framework.version>5.3.21</spring-framework.version>
54-
<testcontainers.version>1.17.2</testcontainers.version>
55-
<jts-core.version>1.18.2</jts-core.version>
53+
<spring-framework.version>5.3.22</spring-framework.version>
54+
<testcontainers.version>1.17.3</testcontainers.version>
55+
<jts-core.version>1.19.0</jts-core.version>
5656
</properties>
5757

5858
<licenses>
@@ -298,7 +298,7 @@
298298
<plugin>
299299
<groupId>org.apache.maven.plugins</groupId>
300300
<artifactId>maven-deploy-plugin</artifactId>
301-
<version>2.8.2</version>
301+
<version>3.0.0</version>
302302
</plugin>
303303
<plugin>
304304
<groupId>org.apache.maven.plugins</groupId>
@@ -324,7 +324,7 @@
324324
<plugin>
325325
<groupId>org.apache.maven.plugins</groupId>
326326
<artifactId>maven-javadoc-plugin</artifactId>
327-
<version>3.4.0</version>
327+
<version>3.4.1</version>
328328
<configuration>
329329
<excludePackageNames>
330330
io.r2dbc.postgresql.authentication,io.r2dbc.postgresql.client,io.r2dbc.postgresql.message,io.r2dbc.postgresql.util
@@ -400,7 +400,7 @@
400400
<plugin>
401401
<groupId>org.codehaus.mojo</groupId>
402402
<artifactId>flatten-maven-plugin</artifactId>
403-
<version>1.2.7</version>
403+
<version>1.3.0</version>
404404
<executions>
405405
<execution>
406406
<id>flatten</id>
@@ -524,7 +524,7 @@
524524
<plugin>
525525
<groupId>org.codehaus.mojo</groupId>
526526
<artifactId>exec-maven-plugin</artifactId>
527-
<version>3.0.0</version>
527+
<version>3.1.0</version>
528528
<executions>
529529
<execution>
530530
<id>run-benchmarks</id>

src/test/java/io/r2dbc/postgresql/util/PostgresqlServerExtension.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ private DatabaseContainer getContainer() {
9898
}
9999

100100
@Override
101-
@SuppressWarnings("rawtypes")
102101
public void afterAll(ExtensionContext context) {
103102

104103
if (this.dataSource != null) {
@@ -107,7 +106,6 @@ public void afterAll(ExtensionContext context) {
107106
}
108107

109108
@Override
110-
@SuppressWarnings("rawtypes")
111109
public void beforeAll(ExtensionContext context) {
112110
initialize();
113111
}
@@ -185,7 +183,7 @@ public String getPassword() {
185183
}
186184

187185
public DatabaseContainer getPostgres() {
188-
return postgres;
186+
return this.postgres;
189187
}
190188

191189
private <T extends PostgreSQLContainer<T>> T container() {

0 commit comments

Comments
 (0)