You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by an...@apache.org on 2005/06/04 07:04:18 UTC

svn commit: r179948 - /cocoon/trunk/tools/ide/eclipse/make-classpath.xsl

Author: antonio
Date: Fri Jun  3 22:04:18 2005
New Revision: 179948

URL: http://svn.apache.org/viewcvs?rev=179948&view=rev
Log:
Exclude .svn dirs from eclipse classpath (needed for 3.1 rc1)

Modified:
    cocoon/trunk/tools/ide/eclipse/make-classpath.xsl

Modified: cocoon/trunk/tools/ide/eclipse/make-classpath.xsl
URL: http://svn.apache.org/viewcvs/cocoon/trunk/tools/ide/eclipse/make-classpath.xsl?rev=179948&r1=179947&r2=179948&view=diff
==============================================================================
--- cocoon/trunk/tools/ide/eclipse/make-classpath.xsl (original)
+++ cocoon/trunk/tools/ide/eclipse/make-classpath.xsl Fri Jun  3 22:04:18 2005
@@ -36,7 +36,7 @@
       <xsl:for-each select="src-dirs/item | mock-dirs/item">
         <!-- alphabetical sorting, complete path -->
         <xsl:sort select="."/>
-        <classpathentry kind="src" path="{.}"/>
+        <classpathentry excluding="**/.svn/**|htmlunit/" kind="src" path="{.}"/>
       </xsl:for-each>
 
       <!-- 2. libraries -->