Skip to content

Commit 4cba0d5

Browse files
committed
#126 - Use testcontainers version property.
We now use the version property from Spring Data Build and import testcontainers-bom.
1 parent ac4e84d commit 4cba0d5

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

pom.xml

+10-7
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
<parent>
1515
<groupId>org.springframework.data.build</groupId>
1616
<artifactId>spring-data-parent</artifactId>
17-
<version>2.2.0.M4</version>
17+
<version>2.2.0.BUILD-SNAPSHOT</version>
1818
</parent>
1919

2020
<properties>
2121

2222
<dist.key>DATAR2DBC</dist.key>
2323

24-
<springdata.commons>2.2.0.M4</springdata.commons>
25-
<springdata.relational>1.1.0.M4</springdata.relational>
24+
<springdata.commons>2.2.0.BUILD-SNAPSHOT</springdata.commons>
25+
<springdata.relational>1.1.0.BUILD-SNAPSHOT</springdata.relational>
2626
<java-module-name>spring.data.r2dbc</java-module-name>
2727
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
2828

@@ -34,8 +34,6 @@
3434
<mssql-jdbc.version>7.1.2.jre8-preview</mssql-jdbc.version>
3535
<r2dbc-releasetrain.version>Arabba-M8</r2dbc-releasetrain.version>
3636
<reactive-streams.version>1.0.1</reactive-streams.version>
37-
<testcontainers.version>1.10.1</testcontainers.version>
38-
3937
</properties>
4038

4139
<inceptionYear>2018</inceptionYear>
@@ -74,6 +72,13 @@
7472
<type>pom</type>
7573
<scope>import</scope>
7674
</dependency>
75+
<dependency>
76+
<groupId>org.testcontainers</groupId>
77+
<artifactId>testcontainers-bom</artifactId>
78+
<version>${testcontainers}</version>
79+
<type>pom</type>
80+
<scope>import</scope>
81+
</dependency>
7782
</dependencies>
7883
</dependencyManagement>
7984

@@ -223,7 +228,6 @@
223228
<dependency>
224229
<groupId>org.testcontainers</groupId>
225230
<artifactId>mysql</artifactId>
226-
<version>${testcontainers.version}</version>
227231
<scope>test</scope>
228232
<exclusions>
229233
<exclusion>
@@ -236,7 +240,6 @@
236240
<dependency>
237241
<groupId>org.testcontainers</groupId>
238242
<artifactId>postgresql</artifactId>
239-
<version>${testcontainers.version}</version>
240243
<scope>test</scope>
241244
</dependency>
242245

0 commit comments

Comments
 (0)