DATAJDBC-168 - Run integration tests with testcontainers.

Added testcontainers as dependency and configured MySql and Postrgres datasources to use it.

Original pull request: #34.
This commit is contained in:
sedooe
2018-02-01 12:15:25 +03:00
committed by Jens Schauder
parent 0fdd885224
commit 0fe791f2bc
8 changed files with 106 additions and 33 deletions

14
pom.xml
View File

@@ -183,6 +183,20 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>mysql</artifactId>
<version>1.5.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>postgresql</artifactId>
<version>1.5.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>