Skip to content

Commit

Permalink
Merge pull request #473 from obfischer/improvement/472-update-to-junit-5
Browse files Browse the repository at this point in the history
Use JUnit 5 instead of JUnit 4
  • Loading branch information
bmarwell committed Jul 23, 2021
2 parents 4fd669c + da37339 commit c47291d
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions pom.xml
Expand Up @@ -98,7 +98,7 @@
<properties>
<mojo.java.target>1.8</mojo.java.target>
<maven.compiler.source>${mojo.java.target}</maven.compiler.source>

<junitBomVersion>5.7.2</junitBomVersion>
<mavenVersion>3.0.5</mavenVersion>
<wagonVersion>3.4.0</wagonVersion>
<doxiaVersion>1.9.1</doxiaVersion>
Expand All @@ -108,6 +108,18 @@
<project.build.outputTimestamp>2020-08-07T21:31:00Z</project.build.outputTimestamp>
</properties>

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

<dependencies>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
Expand Down Expand Up @@ -227,8 +239,13 @@
<version>3.8.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit c47291d

Please sign in to comment.