File tree 1 file changed +9
-1
lines changed
documentation/src/docs/asciidoc/user-guide
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ native support instead.
240
240
====
241
241
242
242
Starting with https://issues.apache.org/jira/browse/SUREFIRE-1330[version 2.22.0], Maven
243
- Surefire provides
243
+ Surefire and Maven Failsafe provide
244
244
http://maven.apache.org/surefire/maven-surefire-plugin/examples/junit-platform.html[native support]
245
245
for executing tests on the JUnit Platform. The `pom.xml` file in the
246
246
`{junit5-jupiter-starter-maven}` project demonstrates how to use it and can serve as a
@@ -265,6 +265,10 @@ following.
265
265
<artifactId>maven-surefire-plugin</artifactId>
266
266
<version>{surefire-version}</version>
267
267
</plugin>
268
+ <plugin>
269
+ <artifactId>maven-failsafe-plugin</artifactId>
270
+ <version>{surefire-version}</version>
271
+ </plugin>
268
272
</plugins>
269
273
</build>
270
274
...
@@ -301,6 +305,10 @@ implementation similar to the following.
301
305
<artifactId>maven-surefire-plugin</artifactId>
302
306
<version>{surefire-version}</version>
303
307
</plugin>
308
+ <plugin>
309
+ <artifactId>maven-failsafe-plugin</artifactId>
310
+ <version>{surefire-version}</version>
311
+ </plugin>
304
312
</plugins>
305
313
</build>
306
314
...
You can’t perform that action at this time.
0 commit comments