Skip to content

Commit 09a7276

Browse files
committed
DATAJDBC-213 - Upgraded testcontainers dependency.
This fixes build failures on Travis-CI. There is an additional test depency to apache commons necessary due to a bug in the testcontainers version. See also: testcontainers/testcontainers-java#656
1 parent 35fa0d1 commit 09a7276

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<mysql-connector-java.version>5.1.41</mysql-connector-java.version>
3434
<postgresql.version>42.0.0</postgresql.version>
3535
<mariadb-java-client.version>2.2.3</mariadb-java-client.version>
36-
<testcontainers.version>1.6.0</testcontainers.version>
36+
<testcontainers.version>1.7.2</testcontainers.version>
3737

3838
</properties>
3939

@@ -262,6 +262,13 @@
262262
<version>${testcontainers.version}</version>
263263
<scope>test</scope>
264264
</dependency>
265+
<!-- Workaround for https://github.com/testcontainers/testcontainers-java/issues/656-->
266+
<dependency>
267+
<groupId>commons-lang</groupId>
268+
<artifactId>commons-lang</artifactId>
269+
<version>2.6</version>
270+
<scope>test</scope>
271+
</dependency>
265272

266273
</dependencies>
267274

0 commit comments

Comments
 (0)