You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ace.apache.org by ma...@apache.org on 2014/05/02 09:20:44 UTC

svn commit: r1591816 - /ace/trunk/build/build.xml

Author: marrs
Date: Fri May  2 07:20:43 2014
New Revision: 1591816

URL: http://svn.apache.org/r1591816
Log:
ACE-476 Added a task that collects all non-itest bundles, so they can easily be copied to a baseline repository in Eclipse.

Modified:
    ace/trunk/build/build.xml

Modified: ace/trunk/build/build.xml
URL: http://svn.apache.org/viewvc/ace/trunk/build/build.xml?rev=1591816&r1=1591815&r2=1591816&view=diff
==============================================================================
--- ace/trunk/build/build.xml (original)
+++ ace/trunk/build/build.xml Fri May  2 07:20:43 2014
@@ -157,4 +157,14 @@
 		<!-- and cleanup -->
 		<delete dir="${target.base.dir}" />
 	</target>
+	
+	<target name="package-baseline" description="packages all non-itest bundles in a single folder for import into a baseline repo">
+		<mkdir dir="${target.dir}/baseline" />
+		<copy todir="${target.dir}/baseline" flatten="true">
+			<fileset dir="..">
+				<include name="*/generated/*.jar" />
+				<exclude name="*/generated/*.itest.jar" />
+			</fileset>
+		</copy>
+	</target>
 </project>