Add JUnit Jupiter + JUnit Vintage

This commit is contained in:
Chris Eager 2021-02-18 14:22:13 -06:00 committed by Chris Eager
parent 6d16ad2763
commit 9af9e21e05
1 changed files with 16 additions and 0 deletions

16
pom.xml
View File

@ -136,6 +136,22 @@
<version>3.15.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.7.1</version>
<type>pom</type>
</dependency>
</dependencies>
<build>