[jboss-svn-commits] JBL Code SVN: r12824 - labs/jbossesb/trunk/product.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Jun 25 07:52:21 EDT 2007


Author: beve
Date: 2007-06-25 07:52:21 -0400 (Mon, 25 Jun 2007)
New Revision: 12824

Modified:
   labs/jbossesb/trunk/product/build.xml
Log:
Modified org.jboss.esb.test target which now depends on the jar target. Also removed the warning what was being displayed.
Added a new default target that performs 'dist' and then 'test'


Modified: labs/jbossesb/trunk/product/build.xml
===================================================================
--- labs/jbossesb/trunk/product/build.xml	2007-06-25 11:30:20 UTC (rev 12823)
+++ labs/jbossesb/trunk/product/build.xml	2007-06-25 11:52:21 UTC (rev 12824)
@@ -1,4 +1,4 @@
-<project name="JBESB" default="test" basedir=".">
+<project name="JBESB" default="default" basedir=".">
 	
 	<description>
 		JBoss ESB Project
@@ -136,10 +136,7 @@
         <antcall target="org.jboss.esb.test" />
     </target>
 
-    <target name="org.jboss.esb.test">
-        <available file="build" type="dir" property="build-available" />
-        <antcall target="assert-build-available" />
-
+    <target name="org.jboss.esb.test" depends="jar">
         <echo message="Testing of modules, using unit and functional tests"/>
         <ant dir="rosetta" target="org.jboss.esb.rosetta.test"/>
     	<ant dir="services" target="test"/>
@@ -454,4 +451,7 @@
 	<target name="instr-report">
 		<ant dir="rosetta" target="instr-report"/>
 	</target>
+
+	<target name="default" depends="dist,test" description="will run the 'dist' and 'test' targets"/>
+
 </project>




More information about the jboss-svn-commits mailing list