You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2007/04/29 00:20:44 UTC

svn commit: r533436 - /roller/trunk/build.xml

Author: agilliland
Date: Sat Apr 28 15:20:43 2007
New Revision: 533436

URL: http://svn.apache.org/viewvc?view=rev&rev=533436
Log:
when copying web resources, include by default and only exclude certain files like .java files.


Modified:
    roller/trunk/build.xml

Modified: roller/trunk/build.xml
URL: http://svn.apache.org/viewvc/roller/trunk/build.xml?view=diff&rev=533436&r1=533435&r2=533436
==============================================================================
--- roller/trunk/build.xml (original)
+++ roller/trunk/build.xml Sat Apr 28 15:20:43 2007
@@ -360,9 +360,9 @@
     <!-- Copy in resources -->
     <copy todir="${build.compile.web}">
         <fileset dir="${ro.src}">
-            <include name="**/*.properties"/>
-            <include name="**/*.tpl"/>
-            <include name="**/*.vm"/>
+            <exclude name="**/*.java"/>
+            <exclude name="**/*.html"/>
+            <exclude name="**/*.png"/>
         </fileset>
     </copy>