This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
The following commit(s) were added to refs/heads/master by this push: new 012183448 [SUREFIRE-2283] FAQ site contains broken link to failsafe-plugin 012183448 is described below commit 012183448e0af139455af71bcdc9ccae82365d38 Author: Michael Osipov <micha...@apache.org> AuthorDate: Tue Oct 29 14:20:07 2024 +0100 [SUREFIRE-2283] FAQ site contains broken link to failsafe-plugin --- maven-surefire-plugin/src/site/fml/faq.fml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maven-surefire-plugin/src/site/fml/faq.fml b/maven-surefire-plugin/src/site/fml/faq.fml index 2464d08cc..ae4e5af7e 100644 --- a/maven-surefire-plugin/src/site/fml/faq.fml +++ b/maven-surefire-plugin/src/site/fml/faq.fml @@ -29,11 +29,11 @@ under the License. <question>What is the difference between maven-failsafe-plugin and maven-surefire-plugin?</question> <answer> <p> - <a href="http://maven.apache.org/plugins/maven-surefire-plugin">maven-surefire-plugin</a> + <a href="http://maven.apache.org/plugins/maven-surefire-plugin/">maven-surefire-plugin</a> is designed for running unit tests and if any of the tests fail then it will fail the build immediately. </p> <p> - <a href="http://maven.apache.org/plugins/maven-failsafe-plugin">maven-failsafe-plugin</a> + <a href="http://maven.apache.org/plugins/maven-failsafe-plugin/">maven-failsafe-plugin</a> is designed for running integration tests, and decouples failing the build if there are test failures from actually running the tests. </p>