|
|
|
|
@ -23,8 +23,6 @@
@@ -23,8 +23,6 @@
|
|
|
|
|
<project.root>${basedir}/..</project.root> |
|
|
|
|
</properties> |
|
|
|
|
|
|
|
|
|
<inceptionYear>2017</inceptionYear> |
|
|
|
|
|
|
|
|
|
<dependencyManagement> |
|
|
|
|
<dependencies> |
|
|
|
|
<dependency> |
|
|
|
|
@ -90,6 +88,15 @@
@@ -90,6 +88,15 @@
|
|
|
|
|
<optional>true</optional> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.liquibase</groupId> |
|
|
|
|
<artifactId>liquibase-core</artifactId> |
|
|
|
|
<version>${liquibase.version}</version> |
|
|
|
|
<optional>true</optional> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- JDBC Drivers --> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.h2database</groupId> |
|
|
|
|
<artifactId>h2</artifactId> |
|
|
|
|
@ -104,26 +111,6 @@
@@ -104,26 +111,6 @@
|
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.awaitility</groupId> |
|
|
|
|
<artifactId>awaitility</artifactId> |
|
|
|
|
<version>${awaitility.version}</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.assertj</groupId> |
|
|
|
|
<artifactId>assertj-core</artifactId> |
|
|
|
|
<version>${assertj}</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<groupId>net.bytebuddy</groupId> |
|
|
|
|
<artifactId>byte-buddy</artifactId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>mysql</groupId> |
|
|
|
|
<artifactId>mysql-connector-java</artifactId> |
|
|
|
|
@ -166,67 +153,84 @@
@@ -166,67 +153,84 @@
|
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- Test dependencies --> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.testcontainers</groupId> |
|
|
|
|
<artifactId>mysql</artifactId> |
|
|
|
|
<groupId>org.awaitility</groupId> |
|
|
|
|
<artifactId>awaitility</artifactId> |
|
|
|
|
<version>${awaitility.version}</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.assertj</groupId> |
|
|
|
|
<artifactId>assertj-core</artifactId> |
|
|
|
|
<version>${assertj}</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId> |
|
|
|
|
<groupId>net.bytebuddy</groupId> |
|
|
|
|
<artifactId>byte-buddy</artifactId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.testcontainers</groupId> |
|
|
|
|
<artifactId>postgresql</artifactId> |
|
|
|
|
<groupId>org.jmolecules.integrations</groupId> |
|
|
|
|
<artifactId>jmolecules-spring</artifactId> |
|
|
|
|
<version>${jmolecules-integration}</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.testcontainers</groupId> |
|
|
|
|
<artifactId>mariadb</artifactId> |
|
|
|
|
<groupId>com.tngtech.archunit</groupId> |
|
|
|
|
<artifactId>archunit</artifactId> |
|
|
|
|
<version>${archunit.version}</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<!-- Testcontainers --> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.testcontainers</groupId> |
|
|
|
|
<artifactId>mssqlserver</artifactId> |
|
|
|
|
<artifactId>mysql</artifactId> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
<exclusions> |
|
|
|
|
<exclusion> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId> |
|
|
|
|
</exclusion> |
|
|
|
|
</exclusions> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.testcontainers</groupId> |
|
|
|
|
<artifactId>db2</artifactId> |
|
|
|
|
<artifactId>postgresql</artifactId> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.testcontainers</groupId> |
|
|
|
|
<artifactId>oracle-xe</artifactId> |
|
|
|
|
<artifactId>mariadb</artifactId> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.jmolecules.integrations</groupId> |
|
|
|
|
<artifactId>jmolecules-spring</artifactId> |
|
|
|
|
<version>${jmolecules-integration}</version> |
|
|
|
|
<groupId>org.testcontainers</groupId> |
|
|
|
|
<artifactId>mssqlserver</artifactId> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.tngtech.archunit</groupId> |
|
|
|
|
<artifactId>archunit</artifactId> |
|
|
|
|
<version>${archunit.version}</version> |
|
|
|
|
<groupId>org.testcontainers</groupId> |
|
|
|
|
<artifactId>db2</artifactId> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.liquibase</groupId> |
|
|
|
|
<artifactId>liquibase-core</artifactId> |
|
|
|
|
<version>${liquibase.version}</version> |
|
|
|
|
<optional>true</optional> |
|
|
|
|
<groupId>org.testcontainers</groupId> |
|
|
|
|
<artifactId>oracle-xe</artifactId> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
</dependencies> |
|
|
|
|
|