You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by lt...@apache.org on 2010/09/29 15:12:39 UTC

svn commit: r1002605 - in /maven/plugins/trunk/maven-linkcheck-plugin: pom.xml src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java

Author: ltheussl
Date: Wed Sep 29 13:12:39 2010
New Revision: 1002605

URL: http://svn.apache.org/viewvc?rev=1002605&view=rev
Log:
[MLINKCHECK-4] Add support for wildcards in excludedPages. Was fixed in linkcheck with DOXIA-412.

Modified:
    maven/plugins/trunk/maven-linkcheck-plugin/pom.xml
    maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java

Modified: maven/plugins/trunk/maven-linkcheck-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-linkcheck-plugin/pom.xml?rev=1002605&r1=1002604&r2=1002605&view=diff
==============================================================================
--- maven/plugins/trunk/maven-linkcheck-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-linkcheck-plugin/pom.xml Wed Sep 29 13:12:39 2010
@@ -126,7 +126,7 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.doxia</groupId>
       <artifactId>doxia-linkcheck</artifactId>
-      <version>1.1</version>
+      <version>1.2-SNAPSHOT</version>
     </dependency>
 
     <!-- plexus -->

Modified: maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java?rev=1002605&r1=1002604&r2=1002605&view=diff
==============================================================================
--- maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java (original)
+++ maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java Wed Sep 29 13:12:39 2010
@@ -221,9 +221,14 @@ public class LinkcheckReport
     private Integer[] excludedHttpStatusWarnings;
 
     /**
-     * The list of site pages to exclude. By default, this report, i.e. <code>linkcheck.html</code>, will be excluded.
+     * A list of pages to exclude.
      * <br/>
-     * <b>Note</b>: No pattern is allowed for excludedPage, only specific file names.
+     * <b>Note</b>:
+     * <br/>
+     * <ul>
+     * <li>This report, i.e. <code>linkcheck.html</code>, is always excluded.</li>
+     * <li>May contain Ant-style wildcards and double wildcards, e.g. <code>apidocs/**</code>, etc.</li>
+     * </ul>
      *
      * @parameter
      */