Update to JUnit 5.4.0 and AssertJ 3.12.0.
This is needed to keep up with Spring Boot 2.1.3 for the starter. This also adds JUnit Jupiter BOM as imported dependencies, forcing it downwards onto all child projects and effectivly overwriting Boots settings in the starter.
This commit is contained in:
10
pom.xml
10
pom.xml
@@ -82,13 +82,13 @@
|
||||
<maven.compiler.source>${java.version}</maven.compiler.source>
|
||||
<maven.compiler.target>${java.version}</maven.compiler.target>
|
||||
<apiguardian.version>1.0.0</apiguardian.version>
|
||||
<assertj.version>3.11.1</assertj.version>
|
||||
<assertj.version>3.12.0</assertj.version>
|
||||
<checkstyle.version>8.16</checkstyle.version>
|
||||
<java.version>1.8</java.version>
|
||||
<jacoco-maven-plugin.version>0.8.2</jacoco-maven-plugin.version>
|
||||
<jqassistant.version>1.6.0</jqassistant.version>
|
||||
<jqassistant.plugin.version>1.6.0</jqassistant.plugin.version>
|
||||
<junit-jupiter.version>5.3.2</junit-jupiter.version>
|
||||
<junit-jupiter.version>5.4.0</junit-jupiter.version>
|
||||
<maven-checkstyle-plugin.version>3.0.0</maven-checkstyle-plugin.version>
|
||||
<maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version>
|
||||
<maven-enforcer-plugin.version>3.0.0-M2</maven-enforcer-plugin.version>
|
||||
@@ -132,9 +132,11 @@
|
||||
<version>${assertj.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-engine</artifactId>
|
||||
<groupId>org.junit</groupId>
|
||||
<artifactId>junit-bom</artifactId>
|
||||
<version>${junit-jupiter.version}</version>
|
||||
<scope>import</scope>
|
||||
<type>pom</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.testcontainers</groupId>
|
||||
|
||||
@@ -93,7 +93,7 @@
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-engine</artifactId>
|
||||
<artifactId>junit-jupiter</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
||||
Reference in New Issue
Block a user