Skip to content

Commit

Permalink
Add Junit 5 test dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed May 16, 2023
1 parent 8a8ba5a commit a7e17ad
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,17 @@
<version>${jackson.version.core}</version>
</dependency>

<!-- and for testing we need a few libraries
libs for which we use reflection for code, but direct dep for testing
-->

<!-- Test dependencies -->
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-core</artifactId>
Expand Down Expand Up @@ -144,6 +151,18 @@
</repository>
</repositories>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.9.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
Expand Down

0 comments on commit a7e17ad

Please sign in to comment.