Skip to content

Commit

Permalink
Document required maven-failsafe-plugin version in User Guide
Browse files Browse the repository at this point in the history
Issue: #1764
  • Loading branch information
dpolivaev authored and sbrannen committed Feb 7, 2019
1 parent 154ff89 commit 98b1c3c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion documentation/src/docs/asciidoc/user-guide/running-tests.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ native support instead.
====

Starting with https://issues.apache.org/jira/browse/SUREFIRE-1330[version 2.22.0], Maven
Surefire provides
Surefire and Maven Failsafe provide
http://maven.apache.org/surefire/maven-surefire-plugin/examples/junit-platform.html[native support]
for executing tests on the JUnit Platform. The `pom.xml` file in the
`{junit5-jupiter-starter-maven}` project demonstrates how to use it and can serve as a
Expand All @@ -265,6 +265,10 @@ following.
<artifactId>maven-surefire-plugin</artifactId>
<version>{surefire-version}</version>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>{surefire-version}</version>
</plugin>
</plugins>
</build>
...
Expand Down Expand Up @@ -301,6 +305,10 @@ implementation similar to the following.
<artifactId>maven-surefire-plugin</artifactId>
<version>{surefire-version}</version>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>{surefire-version}</version>
</plugin>
</plugins>
</build>
...
Expand Down

0 comments on commit 98b1c3c

Please sign in to comment.