Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mention maven-failsafe-plugin version to be considered in User Guide #1764

Merged
merged 1 commit into from
Feb 7, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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