Author: julien(a)jboss.com
Date: 2007-08-16 12:51:00 -0400 (Thu, 16 Aug 2007)
New Revision: 7962
Modified:
modules/test/trunk/test/build.xml
Log:
make the output put exported zips in the lib folder
Modified: modules/test/trunk/test/build.xml
===================================================================
--- modules/test/trunk/test/build.xml 2007-08-16 16:36:04 UTC (rev 7961)
+++ modules/test/trunk/test/build.xml 2007-08-16 16:51:00 UTC (rev 7962)
@@ -253,15 +253,15 @@
<copy todir="${module.output}/export/lib">
<fileset dir="${build.lib}"/>
</copy>
- <copy todir="${module.output}/export/resources">
- <fileset dir="${build.resources}/config"
includes="*.xml"/>
- </copy>
- <zip file="${module.output}/export/resources/opends.zip">
+ <zip file="${module.output}/export/lib/opends.zip">
<fileset dir="${build.resources}/config/opends"/>
</zip>
- <zip file="${module.output}/export/resources/ldap.zip">
+ <zip file="${module.output}/export/lib/ldap.zip">
<fileset dir="${build.resources}/config/ldap"/>
</zip>
+ <copy todir="${module.output}/export/resources">
+ <fileset dir="${build.resources}/config"
includes="*.xml"/>
+ </copy>
</target>