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 e53db98 commit 0c99126
Showing 1 changed file with 23 additions and 18 deletions.
41 changes: 23 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,16 @@
<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>

<scm>
<connection>scm:git:https://github.com/lettuce-io/lettuce-core.git</connection>
<developerConnection>scm:git:https://github.com/lettuce-io/lettuce-core.git</developerConnection>
<url>http://github.com/lettuce-io/lettuce-core</url>
<tag>HEAD</tag>
</scm>
<tag>HEAD</tag>
</scm>

<dependencyManagement>
<dependencies>
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 0c99126

Please sign in to comment.