Author: brianf
Date: Thu Mar 20 09:23:14 2008
New Revision: 639343

URL: http://svn.apache.org/viewvc?rev=639343&view=rev
Log:
fixed parsing error in xdoc

Modified:
    
maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/UnpackDependenciesMojo.java
    
maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/fromConfiguration/UnpackMojo.java

Modified: 
maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/UnpackDependenciesMojo.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/UnpackDependenciesMojo.java?rev=639343&r1=639342&r2=639343&view=diff
==============================================================================
--- 
maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/UnpackDependenciesMojo.java
 (original)
+++ 
maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/UnpackDependenciesMojo.java
 Thu Mar 20 09:23:14 2008
@@ -49,7 +49,7 @@
 {
        /**
      * A comma separated list of file patterns to include when unpacking the
-     * artifact.  i.e.  **\/*.xml,**\/*.properties NOTE: Excludes patterns 
override the includes. (component code = return isIncluded( name ) && 
!isExcluded( name );)
+     * artifact.  i.e.  **\/*.xml,**\/*.properties NOTE: Excludes patterns 
override the includes. (component code = return isIncluded( name ) AND 
!isExcluded( name );)
      * @since 2.0
      * @parameter expression="${mdep.unpack.includes}"
      */
@@ -57,7 +57,7 @@
 
     /**
      * A comma separated list of file patterns to exclude when unpacking the
-     * artifact.  i.e.  **\/*.xml,**\/*.properties. NOTE: Excludes patterns 
override the includes. (component code = return isIncluded( name ) && 
!isExcluded( name );)
+     * artifact.  i.e.  **\/*.xml,**\/*.properties. NOTE: Excludes patterns 
override the includes. (component code = return isIncluded( name ) AND 
!isExcluded( name );)
      * @since 2.0
      * @parameter expression="${mdep.unpack.excludes}"
      */

Modified: 
maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/fromConfiguration/UnpackMojo.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/fromConfiguration/UnpackMojo.java?rev=639343&r1=639342&r2=639343&view=diff
==============================================================================
--- 
maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/fromConfiguration/UnpackMojo.java
 (original)
+++ 
maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/fromConfiguration/UnpackMojo.java
 Thu Mar 20 09:23:14 2008
@@ -57,7 +57,7 @@
     
     /**
      * A comma separated list of file patterns to include when unpacking the
-     * artifact.  i.e.  **\/*.xml,**\/*.properties NOTE: Excludes patterns 
override the includes. (component code = return isIncluded( name ) && 
!isExcluded( name );)
+     * artifact.  i.e.  **\/*.xml,**\/*.properties NOTE: Excludes patterns 
override the includes. (component code = return isIncluded( name ) AND 
!isExcluded( name );)
      *  @since 2.0-alpha-5
      * @parameter expression="${mdep.unpack.includes}"
      */
@@ -65,7 +65,7 @@
 
     /**
      * A comma separated list of file patterns to exclude when unpacking the
-     * artifact.  i.e.  **\/*.xml,**\/*.properties NOTE: Excludes patterns 
override the includes. (component code = return isIncluded( name ) && 
!isExcluded( name );)
+     * artifact.  i.e.  **\/*.xml,**\/*.properties NOTE: Excludes patterns 
override the includes. (component code = return isIncluded( name ) AND 
!isExcluded( name );)
      * @since 2.0-alpha-5
      * @parameter expression="${mdep.unpack.excludes}"
      */


Reply via email to