This is an automated email from the ASF dual-hosted git repository. rcordier pushed a commit to branch postgresql in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 617d6e10355be6056f6f9a3c35cf9e367c24a769 Author: Quan Tran <[email protected]> AuthorDate: Thu Mar 21 10:58:21 2024 +0700 JAMES-2586 Avoid declare jooq and r2dbc-postgresql version in multiple places Was declared in the backend-common postgres module, and it is enough. --- server/blob/blob-postgres/pom.xml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/server/blob/blob-postgres/pom.xml b/server/blob/blob-postgres/pom.xml index 09ab43e02b..d5bb4bfd06 100644 --- a/server/blob/blob-postgres/pom.xml +++ b/server/blob/blob-postgres/pom.xml @@ -31,11 +31,6 @@ <name>Apache James :: Server :: Blob :: Postgres</name> - <properties> - <jooq.version>3.16.22</jooq.version> - <r2dbc.postgresql.version>1.0.2.RELEASE</r2dbc.postgresql.version> - </properties> - <dependencies> <dependency> <groupId>${james.groupId}</groupId> @@ -106,26 +101,11 @@ <artifactId>awaitility</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>org.jooq</groupId> - <artifactId>jooq</artifactId> - <version>${jooq.version}</version> - </dependency> - <dependency> - <groupId>org.jooq</groupId> - <artifactId>jooq-postgres-extensions</artifactId> - <version>${jooq.version}</version> - </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>org.postgresql</groupId> - <artifactId>r2dbc-postgresql</artifactId> - <version>${r2dbc.postgresql.version}</version> - </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>junit-jupiter</artifactId> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
