Author: bago
Date: Mon Aug 11 06:52:59 2008
New Revision: 684748
URL: http://svn.apache.org/viewvc?rev=684748&view=rev
Log:
Stop ant from copying resources from src/main/java folder. resources belongs to
resources folder.
Modified:
james/server/trunk/build-tools/common-build.xml
Modified: james/server/trunk/build-tools/common-build.xml
URL:
http://svn.apache.org/viewvc/james/server/trunk/build-tools/common-build.xml?rev=684748&r1=684747&r2=684748&view=diff
==============================================================================
--- james/server/trunk/build-tools/common-build.xml (original)
+++ james/server/trunk/build-tools/common-build.xml Mon Aug 11 06:52:59 2008
@@ -130,13 +130,16 @@
<exclude name='${constants.file}'/>
-->
</javac>
- <copy todir='@{bin}'>
+ <copy todir='@{bin}'>
+ <!-- We should not have resources in the java src tree -->
+ <!--
<fileset dir='@{src}'>
<include name='**/*.properties'/>
<include name='**/*.xinfo'/>
<include name='**/*.xml'/>
<include name='**/*.mxinfo'/>
- </fileset>
+ </fileset>
+ -->
<fileset dir='@{resources}'>
<include name='**/*'/>
</fileset>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]