You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by dj...@apache.org on 2007/04/25 01:34:12 UTC

svn commit: r532136 - /db/derby/code/trunk/build.xml

Author: djd
Date: Tue Apr 24 16:34:11 2007
New Revision: 532136

URL: http://svn.apache.org/viewvc?view=rev&rev=532136
Log:
Add a cibuild target to the top-level build.xml file, suitable for a continuous integration build.

Modified:
    db/derby/code/trunk/build.xml

Modified: db/derby/code/trunk/build.xml
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/build.xml?view=diff&rev=532136&r1=532135&r2=532136
==============================================================================
--- db/derby/code/trunk/build.xml (original)
+++ db/derby/code/trunk/build.xml Tue Apr 24 16:34:11 2007
@@ -1597,6 +1597,14 @@
 
   </target>
 
+  <!-- 
+     cibuild - target suitable for continuous integration builds.
+     Clobbers/cleans everything it can, then builds the jars
+     and the javadoc. 
+  -->
+  <target name="cibuild"
+	depends="clobber,cleanjars,cleandocs,junit-clean,gump_all"/>
+
   <target name="gump_all" depends="all,buildjars,javadoc"/>
 
   <target name="snapshot" depends="clobber,snapshotError,init,initjars">