You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2006/02/28 02:18:04 UTC

svn commit: r381528 - /maven/plugins/trunk/maven-surefire-plugin/src/main/java/org/apache/maven/test/SurefirePlugin.java

Author: jvanzyl
Date: Mon Feb 27 17:18:02 2006
New Revision: 381528

URL: http://svn.apache.org/viewcvs?rev=381528&view=rev
Log:
[MSUREFIRE-45] we actually use ant pattern matching code, not really regexes in the proper sense

Modified:
    maven/plugins/trunk/maven-surefire-plugin/src/main/java/org/apache/maven/test/SurefirePlugin.java

Modified: maven/plugins/trunk/maven-surefire-plugin/src/main/java/org/apache/maven/test/SurefirePlugin.java
URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-surefire-plugin/src/main/java/org/apache/maven/test/SurefirePlugin.java?rev=381528&r1=381527&r2=381528&view=diff
==============================================================================
--- maven/plugins/trunk/maven-surefire-plugin/src/main/java/org/apache/maven/test/SurefirePlugin.java (original)
+++ maven/plugins/trunk/maven-surefire-plugin/src/main/java/org/apache/maven/test/SurefirePlugin.java Mon Feb 27 17:18:02 2006
@@ -101,8 +101,8 @@
     private String reportsDirectory;
 
     /**
-     * Specify this parameter if you want to use the test regex notation to select tests to run.
-     * The regular expression will be used to create an include pattern formatted like <code>**&#47;${test}.java</code>
+     * Specify this parameter if you want to use the test pattern matching notation, Ant pattern matching, to select tests to run.
+     * The Ant pattern will be used to create an include pattern formatted like <code>**&#47;${test}.java</code>
      * When used, the <code>includes</code> and <code>excludes</code> patterns parameters are ignored
      *
      * @parameter expression="${test}"