Author: brianf
Date: Mon Mar  3 12:02:53 2008
New Revision: 633253

URL: http://svn.apache.org/viewvc?rev=633253&view=rev
Log:
fixed parse error

Modified:
    maven/plugins/trunk/maven-dependency-plugin/src/site/fml/faq.fml

Modified: maven/plugins/trunk/maven-dependency-plugin/src/site/fml/faq.fml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/site/fml/faq.fml?rev=633253&r1=633252&r2=633253&view=diff
==============================================================================
--- maven/plugins/trunk/maven-dependency-plugin/src/site/fml/faq.fml (original)
+++ maven/plugins/trunk/maven-dependency-plugin/src/site/fml/faq.fml Mon Mar  3 
12:02:53 2008
@@ -65,7 +65,7 @@
       <faq id="includes">
   <question>Why am I having trouble unpacking only a specific file?</question>
   <answer><p>
-       The excludes will override the includes declaration. That means if you 
specify <excludes>**/*</excludes><includes>**/foo</includes>, you will exclude 
everything. If you only want foo, then just specify the includes. The plexus 
component used to unpack uses the following code to determing which files to 
unpack: return isIncluded( name ) && !isExcluded( name );
+       The excludes will override the includes declaration. That means if you 
specify excludes=**/* ,includes=**/foo, you will exclude everything. If you 
only want foo, then just specify the includes. The plexus component used to 
unpack uses the following code to determing which files to unpack: return 
isIncluded( name ) AND !isExcluded( name );
        </p>
   </answer>
   </faq>


Reply via email to