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

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Wed Jan 31 12:42:48 EST 2007


Author: kurt.stam at jboss.com
Date: 2007-01-31 12:42:47 -0500 (Wed, 31 Jan 2007)
New Revision: 9202

Modified:
   labs/jbossesb/trunk/product/install/build.xml
   labs/jbossesb/trunk/product/install/deployment.properties-example
Log:
Adding install task.

Modified: labs/jbossesb/trunk/product/install/build.xml
===================================================================
--- labs/jbossesb/trunk/product/install/build.xml	2007-01-31 17:41:58 UTC (rev 9201)
+++ labs/jbossesb/trunk/product/install/build.xml	2007-01-31 17:42:47 UTC (rev 9202)
@@ -1,4 +1,4 @@
-<project name="JBESB_Installer" default="deploy" basedir=".">
+<project name="JBESB_Installer" default="install" basedir=".">
 
 	<!-- Set deployment properties filename -->
 	<property name="org.jboss.esb.deployment.properties" location="deployment.properties"/>
@@ -267,4 +267,13 @@
 		</copy>
 	</target>
 	
+	<!-- This task is here for the bundle distribution and will create a ready-to-go install,
+	if you already have JBossAS installed then simply run the deploy task -->
+	<target name="install" description="Installs JBossAS-4.0.GA with ejb3 and deploys JBossESB to it">
+		<echo>This task creates a ready-to-go JBossESB install deployed in /JBoss-4.0.5.GA (on the root
+		of your file system) if you have downloaded the bundle. </echo>
+		<unzip src="${org.jboss.esb.dist.lib}/../jboss-4.0.5.GA.zip" dest="/" />
+		<antcall target="deploy" />
+	</target>
+	
 </project>

Modified: labs/jbossesb/trunk/product/install/deployment.properties-example
===================================================================
--- labs/jbossesb/trunk/product/install/deployment.properties-example	2007-01-31 17:41:58 UTC (rev 9201)
+++ labs/jbossesb/trunk/product/install/deployment.properties-example	2007-01-31 17:42:47 UTC (rev 9202)
@@ -19,6 +19,7 @@
 # JBossAS
 ######################################################################
 # JBossAS home directory
+# (By default the 'ant install' task will create this directory.)
 org.jboss.esb.appserver.home=/jboss-4.0.5.GA
 # the instance of jboss you are running (default)
 org.jboss.esb.appserver.config=default




More information about the jboss-svn-commits mailing list