[jboss-svn-commits] JBL Code SVN: r11438 - labs/jbossesb/trunk/product/samples/quickstarts/conf.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Sun Apr 29 08:16:12 EDT 2007


Author: beve
Date: 2007-04-29 08:16:12 -0400 (Sun, 29 Apr 2007)
New Revision: 11438

Modified:
   labs/jbossesb/trunk/product/samples/quickstarts/conf/base-build.xml
Log:
Added the target config as a depends for the deploy target. Some quickstart need to create directories and such before running, like helloworld_file_action


Modified: labs/jbossesb/trunk/product/samples/quickstarts/conf/base-build.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/conf/base-build.xml	2007-04-29 12:12:10 UTC (rev 11437)
+++ labs/jbossesb/trunk/product/samples/quickstarts/conf/base-build.xml	2007-04-29 12:16:12 UTC (rev 11438)
@@ -98,7 +98,7 @@
         <fail />
     </target>
 
-    <target name="deploy" depends="compile">
+    <target name="deploy" depends="compile,config">
 		<description>deploy				will deploy the Quickstart .esb archive to JBoss ESB Server
     	</description>
 		<echo>Deploying Quickstart to JBoss ESB/App Server...</echo>
@@ -106,8 +106,6 @@
         <mkdir dir="${build.dir}/META-INF" />
         <copy todir="${build.dir}/META-INF">
             <fileset dir="${basedir}" includes="jboss-esb.xml" />
-        </copy>
-        <copy todir="${build.dir}">
             <fileset dir="${basedir}" includes="deployment.xml" />
         </copy>
 




More information about the jboss-svn-commits mailing list