You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2013/06/01 21:20:44 UTC

git commit: Improve javadoc by describing the usage of '!' for exclusion when using -Dtest=

Updated Branches:
  refs/heads/master 4a21924a5 -> 4b1cec57f


Improve javadoc by describing the usage of '!' for exclusion when using -Dtest=


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

Branch: refs/heads/master
Commit: 4b1cec57fffcefa8683e6fc26e2e364772dba767
Parents: 4a21924
Author: rfscholte <rf...@apache.org>
Authored: Sat Jun 1 21:20:15 2013 +0200
Committer: rfscholte <rf...@apache.org>
Committed: Sat Jun 1 21:20:15 2013 +0200

----------------------------------------------------------------------
 .../maven/plugin/surefire/SurefirePlugin.java      |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/4b1cec57/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 bd2f2dc..81b9039 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
@@ -61,7 +61,7 @@ public class SurefirePlugin
      * Specify this parameter to run individual tests by file name, overriding the <code>includes/excludes</code>
      * parameters. Each pattern you specify here will be used to create an include pattern formatted like
      * <code>**&#47;${test}.java</code>, so you can just type "-Dtest=MyTest" to run a single test called
-     * "foo/MyTest.java".<br/>
+     * "foo/MyTest.java". The test patterns prefixed with a <code>!</code> will be excluded.<br/>
      * This parameter overrides the <code>includes/excludes</code> parameters, and the TestNG <code>suiteXmlFiles</code>
      * parameter.
      * <p/>