Skip to content

Commit

Permalink
Use JUnit BOM for dependency management and upgrade to JUnit 5.4.0 #980
Browse files Browse the repository at this point in the history
  • Loading branch information
mp911de committed Feb 12, 2019
1 parent 589a799 commit 171e2b9
Showing 1 changed file with 21 additions and 16 deletions.
37 changes: 21 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
<spring-version>4.3.20.RELEASE</spring-version>
<reactor-version>3.2.6.RELEASE</reactor-version>
<brave-version>5.2.0</brave-version>
<junit-version>5.4.0</junit-version>
<skipITs>true</skipITs>
</properties>

Expand Down Expand Up @@ -100,6 +101,14 @@
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -275,14 +284,24 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.3.1</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.3.1</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -404,20 +423,6 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.3.1</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.3.1</version>
<scope>test</scope>
</dependency>

</dependencies>

<profiles>
Expand Down

0 comments on commit 171e2b9

Please sign in to comment.