Skip to content

Commit

Permalink
Merge pull request #565 from jenkinsci/junit-bom
Browse files Browse the repository at this point in the history
Use JUnit BOM to simplify version constraints
  • Loading branch information
uhafner authored Sep 29, 2022
2 parents 7da6f2e + 0a95842 commit 94b4c9f
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
<!-- Test Library Dependencies Versions -->
<equalsverifier.version>3.10.1</equalsverifier.version>
<junit.version>5.9.1</junit.version>
<junit-platform-launcher.version>1.9.1</junit-platform-launcher.version>
<junit-pioneer.version>1.7.1</junit-pioneer.version>
<mockito.version>4.8.0</mockito.version>
<assertj.version>3.23.1</assertj.version>
Expand Down Expand Up @@ -88,6 +87,13 @@
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
Expand All @@ -108,31 +114,26 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>${junit-platform-launcher.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 94b4c9f

Please sign in to comment.