You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by br...@apache.org on 2005/05/26 05:08:29 UTC

svn commit: r178571 - /maven/components/trunk/maven-model/maven.mdo

Author: brett
Date: Wed May 25 20:08:27 2005
New Revision: 178571

URL: http://svn.apache.org/viewcvs?rev=178571&view=rev
Log:
remove default excludes, the directory scanner has it built in

Modified:
    maven/components/trunk/maven-model/maven.mdo

Modified: maven/components/trunk/maven-model/maven.mdo
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-model/maven.mdo?rev=178571&r1=178570&r2=178571&view=diff
==============================================================================
--- maven/components/trunk/maven-model/maven.mdo (original)
+++ maven/components/trunk/maven-model/maven.mdo Wed May 25 20:08:27 2005
@@ -1530,44 +1530,6 @@
           </association>
         </field>
       </fields>
-      <codeSegments>
-        <codeSegment>
-          <version>3.0.0+</version>
-          <!-- @todo: should these be built somewhere so they are only created once, and can be modified? -->
-          <code><![CDATA[
-              public List getDefaultExcludes() 
-              {
-                  List defaultExcludes = new ArrayList(); 
-                  defaultExcludes.add( "**/*~" ); 
-                  defaultExcludes.add( "**/#*#" ); 
-                  defaultExcludes.add( "**/.#*" ); 
-                  defaultExcludes.add( "**/%*%" ); 
-                  defaultExcludes.add( "**/._*" ); 
-                  
-                  // CVS 
-                  defaultExcludes.add( "**/CVS" ); 
-                  defaultExcludes.add( "**/CVS/**" ); 
-                  defaultExcludes.add( "**/.cvsignore" ); 
-                  
-                  // SCCS 
-                  defaultExcludes.add( "**/SCCS" ); 
-                  defaultExcludes.add( "**/SCCS/**" ); 
-                  
-                  // Visual SourceSafe 
-                  defaultExcludes.add( "**/vssver.scc" ); 
-                  
-                  // Subversion 
-                  defaultExcludes.add( "**/.svn" ); 
-                  defaultExcludes.add( "**/.svn/**" ); 
-                  
-                  // Mac 
-                  defaultExcludes.add( "**/.DS_Store" ); 
-                  
-                  return defaultExcludes; 
-              }
-            ]]></code>
-        </codeSegment>
-      </codeSegments>
     </class>
     <class>
       <name>Parent</name>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org