File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
documentation/src/docs/asciidoc/user-guide Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ native support instead.
240240====
241241
242242Starting with https://issues.apache.org/jira/browse/SUREFIRE-1330[version 2.22.0], Maven
243- Surefire provides
243+ Surefire and Maven Failsafe provide
244244http://maven.apache.org/surefire/maven-surefire-plugin/examples/junit-platform.html[native support]
245245for executing tests on the JUnit Platform. The `pom.xml` file in the
246246`{junit5-jupiter-starter-maven}` project demonstrates how to use it and can serve as a
@@ -265,6 +265,10 @@ following.
265265 <artifactId>maven-surefire-plugin</artifactId>
266266 <version>{surefire-version}</version>
267267 </plugin>
268+ <plugin>
269+ <artifactId>maven-failsafe-plugin</artifactId>
270+ <version>{surefire-version}</version>
271+ </plugin>
268272 </plugins>
269273 </build>
270274 ...
@@ -301,6 +305,10 @@ implementation similar to the following.
301305 <artifactId>maven-surefire-plugin</artifactId>
302306 <version>{surefire-version}</version>
303307 </plugin>
308+ <plugin>
309+ <artifactId>maven-failsafe-plugin</artifactId>
310+ <version>{surefire-version}</version>
311+ </plugin>
304312 </plugins>
305313 </build>
306314 ...
You can’t perform that action at this time.
0 commit comments