Skip to content

Commit d88e916

Browse files
committedJul 1, 2021
Add maven plugins to run JUnit Jupiter based tests
1 parent 9f43264 commit d88e916

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed
 

‎pom.xml

+10-6
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,16 @@
8383
</execution>
8484
</executions>
8585
</plugin>
86+
<plugin>
87+
<groupId>org.apache.maven.plugins</groupId>
88+
<artifactId>maven-surefire-plugin</artifactId>
89+
<version>2.22.2</version>
90+
</plugin>
91+
<plugin>
92+
<groupId>org.apache.maven.plugins</groupId>
93+
<artifactId>maven-failsafe-plugin</artifactId>
94+
<version>2.22.2</version>
95+
</plugin>
8696
</plugins>
8797
</build>
8898

@@ -167,12 +177,6 @@
167177
<version>5.7.2</version>
168178
<scope>test</scope>
169179
</dependency>
170-
<dependency>
171-
<groupId>org.junit.vintage</groupId>
172-
<artifactId>junit-vintage-engine</artifactId>
173-
<version>5.7.2</version>
174-
<scope>test</scope>
175-
</dependency>
176180
</dependencies>
177181

178182
<distributionManagement>

0 commit comments

Comments
 (0)
Please sign in to comment.