You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2014/12/18 22:12:26 UTC

maven-surefire git commit: [SUREFIRE] Mojo Javadoc should not have absolute URL path, and new line with

Repository: maven-surefire
Updated Branches:
  refs/heads/master 6c8bab59a -> 22154d6b3


[SUREFIRE] Mojo Javadoc should not have absolute URL path, and new line with <br/>


Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/22154d6b
Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/22154d6b
Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/22154d6b

Branch: refs/heads/master
Commit: 22154d6b371822ff1c46a2b23de7c8739c32f547
Parents: 6c8bab5
Author: Tibor17 <ti...@lycos.com>
Authored: Thu Dec 18 22:10:54 2014 +0100
Committer: Tibor17 <ti...@lycos.com>
Committed: Thu Dec 18 22:10:54 2014 +0100

----------------------------------------------------------------------
 .../plugin/failsafe/IntegrationTestMojo.java    | 27 +++++++++++---------
 .../plugin/surefire/AbstractSurefireMojo.java   |  5 +---
 .../maven/plugin/surefire/SurefirePlugin.java   | 27 +++++++++++---------
 3 files changed, 31 insertions(+), 28 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/22154d6b/maven-failsafe-plugin/src/main/java/org/apache/maven/plugin/failsafe/IntegrationTestMojo.java
----------------------------------------------------------------------
diff --git a/maven-failsafe-plugin/src/main/java/org/apache/maven/plugin/failsafe/IntegrationTestMojo.java b/maven-failsafe-plugin/src/main/java/org/apache/maven/plugin/failsafe/IntegrationTestMojo.java
index b507e47..870ae0e 100644
--- a/maven-failsafe-plugin/src/main/java/org/apache/maven/plugin/failsafe/IntegrationTestMojo.java
+++ b/maven-failsafe-plugin/src/main/java/org/apache/maven/plugin/failsafe/IntegrationTestMojo.java
@@ -199,10 +199,9 @@ public class IntegrationTestMojo
 
     /**
      * By default, Surefire forks your tests using a manifest-only JAR; set this parameter to "false" to force it to
-     * launch your tests with a plain old Java classpath. (See
-     * http://maven.apache.org/plugins/maven-surefire-plugin/examples/class-loading.html for a more detailed explanation
-     * of manifest-only JARs and their benefits.)
-     * <p/>
+     * launch your tests with a plain old Java classpath. (See the <a href="examples/class-loading.html">examples</a>
+     * for a more detailed explanation of manifest-only JARs and their benefits.)
+     * <br/>
      * Beware, setting this to "false" may cause your tests to fail on Windows if your classpath is too long.
      *
      * @since 2.4.3
@@ -240,16 +239,20 @@ public class IntegrationTestMojo
     /**
      * Defines the order the tests will be run in. Supported values are "alphabetical", "reversealphabetical", "random",
      * "hourly" (alphabetical on even hours, reverse alphabetical on odd hours), "failedfirst", "balanced" and
-     * "filesystem".<p/>
-     * <p/>
+     * "filesystem".
+     * <br/>
+     * <br/>
      * Odd/Even for hourly is determined at the time the of scanning the classpath, meaning it could change during a
-     * multi-module build.<p/>
-     * <p/>
-     * Failed first will run tests that failed on previous run first, as well as new tests for this run.<p/>
-     * <p/>
+     * multi-module build.
+     * <br/>
+     * <br/>
+     * Failed first will run tests that failed on previous run first, as well as new tests for this run.
+     * <br/>
+     * <br/>
      * Balanced is only relevant with parallel=classes, and will try to optimize the run-order of the tests reducing the
-     * overall execution time. Initially a statistics file is created and every next test run will reorder classes.<p/>
-     * <p/>
+     * overall execution time. Initially a statistics file is created and every next test run will reorder classes.
+     * <br/>
+     * <br/>
      * Note that the statistics are stored in a file named .surefire-XXXXXXXXX beside pom.xml, and should not be checked
      * into version control. The "XXXXX" is the SHA1 checksum of the entire surefire configuration, so different
      * configurations will have different statistics files, meaning if you change any config settings you will re-run

http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/22154d6b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
----------------------------------------------------------------------
diff --git a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
index dee273d..f305b6a 100644
--- a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
+++ b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
@@ -353,10 +353,7 @@ public abstract class AbstractSurefireMojo
      * Using an alternate syntax for <em>argLine</em>, <pre>@{...}</pre> allows late replacement of properties when the
      * plugin is executed, so properties that have been modified by other plugins will be picked up correctly.
      * <br/>
-     * See the Frequently Asked Questions page with more details:<br/>
-     * http://maven.apache.org/surefire/maven-surefire-plugin/faq.html
-     * <br/>
-     * http://maven.apache.org/surefire/maven-failsafe-plugin/faq.html
+     * See the <a href="faq.html">Frequently Asked Questions</a> with more details.
      *
      * @since 2.1
      */

http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/22154d6b/maven-surefire-plugin/src/main/java/org/apache/maven/plugin/surefire/SurefirePlugin.java
----------------------------------------------------------------------
diff --git a/maven-surefire-plugin/src/main/java/org/apache/maven/plugin/surefire/SurefirePlugin.java b/maven-surefire-plugin/src/main/java/org/apache/maven/plugin/surefire/SurefirePlugin.java
index e13661d..eeffd52 100644
--- a/maven-surefire-plugin/src/main/java/org/apache/maven/plugin/surefire/SurefirePlugin.java
+++ b/maven-surefire-plugin/src/main/java/org/apache/maven/plugin/surefire/SurefirePlugin.java
@@ -181,10 +181,9 @@ public class SurefirePlugin
 
     /**
      * By default, Surefire forks your tests using a manifest-only JAR; set this parameter to "false" to force it to
-     * launch your tests with a plain old Java classpath. (See
-     * http://maven.apache.org/plugins/maven-surefire-plugin/examples/class-loading.html for a more detailed explanation
-     * of manifest-only JARs and their benefits.)
-     * <p/>
+     * launch your tests with a plain old Java classpath. (See the <a href="examples/class-loading.html">examples</a>
+     * for a more detailed explanation of manifest-only JARs and their benefits.)
+     * <br/>
      * Beware, setting this to "false" may cause your tests to fail on Windows if your classpath is too long.
      *
      * @since 2.4.3
@@ -216,16 +215,20 @@ public class SurefirePlugin
     /**
      * Defines the order the tests will be run in. Supported values are "alphabetical", "reversealphabetical", "random",
      * "hourly" (alphabetical on even hours, reverse alphabetical on odd hours), "failedfirst", "balanced" and
-     * "filesystem".<p/>
-     * <p/>
+     * "filesystem".
+     * <br/>
+     * <br/>
      * Odd/Even for hourly is determined at the time the of scanning the classpath, meaning it could change during a
-     * multi-module build.<p/>
-     * <p/>
-     * Failed first will run tests that failed on previous run first, as well as new tests for this run.<p/>
-     * <p/>
+     * multi-module build.
+     * <br/>
+     * <br/>
+     * Failed first will run tests that failed on previous run first, as well as new tests for this run.
+     * <br/>
+     * <br/>
      * Balanced is only relevant with parallel=classes, and will try to optimize the run-order of the tests reducing the
-     * overall execution time. Initially a statistics file is created and every next test run will reorder classes.<p/>
-     * <p/>
+     * overall execution time. Initially a statistics file is created and every next test run will reorder classes.
+     * <br/>
+     * <br/>
      * Note that the statistics are stored in a file named .surefire-XXXXXXXXX beside pom.xml, and should not be checked
      * into version control. The "XXXXX" is the SHA1 checksum of the entire surefire configuration, so different
      * configurations will have different statistics files, meaning if you change any config settings you will re-run