[jboss-svn-commits] JBL Code SVN: r14704 - in labs/jbossesb/trunk/product: install and 3 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Aug 28 07:35:14 EDT 2007


Author: tfennelly
Date: 2007-08-28 07:35:14 -0400 (Tue, 28 Aug 2007)
New Revision: 14704

Removed:
   labs/jbossesb/trunk/product/samples/quickstarts/aggregator/smooks-cdr.lst
   labs/jbossesb/trunk/product/samples/quickstarts/fun_cbr/smooks-cdr.lst
Modified:
   labs/jbossesb/trunk/product/build-distr.xml
   labs/jbossesb/trunk/product/build.xml
   labs/jbossesb/trunk/product/install/build.xml
   labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2XML_date_manipulation/README.txt
Log:
Updating the build so as to:
1. deploy the contract app to the AS as part of the deploy
2. include the contract app in the esb server
3. include it in the tools folder of the distro

All as part of http://jira.jboss.com/jira/browse/JBESB-673

Modified: labs/jbossesb/trunk/product/build-distr.xml
===================================================================
--- labs/jbossesb/trunk/product/build-distr.xml	2007-08-28 10:44:47 UTC (rev 14703)
+++ labs/jbossesb/trunk/product/build-distr.xml	2007-08-28 11:35:14 UTC (rev 14704)
@@ -38,6 +38,7 @@
                 <include name="tools/**/*"/>
             </fileset>
         </copy>
+        <copy file="tools/console/contract-web/build/contract.war" todir="${esbserver.dist.dir}/tools" failonerror="false" />
         <copy todir="${esbserver.dist.dir}/docs/schema" failonerror="false">
             <fileset dir="${build.dir}/jbossesb/xml">
                 <include name="**/*"/>
@@ -71,6 +72,9 @@
             <fileset dir="tools/configeditor/editor/dist">
                 <include name="jbossesb-config-editor.war"/>
             </fileset>
+            <fileset dir="tools/console/contract-web/build">
+                <include name="contract.war"/>
+            </fileset>
         </copy>
         <copy todir="${esbserver.dist.dir}/server/default/conf">
             <fileset dir="tools/configeditor/editor/resources">

Modified: labs/jbossesb/trunk/product/build.xml
===================================================================
--- labs/jbossesb/trunk/product/build.xml	2007-08-28 10:44:47 UTC (rev 14703)
+++ labs/jbossesb/trunk/product/build.xml	2007-08-28 11:35:14 UTC (rev 14704)
@@ -283,11 +283,13 @@
 		<mkdir dir="${org.jboss.esb.installationdirectory}/tools/configeditor"/>
 		<mkdir dir="${org.jboss.esb.installationdirectory}/tools/configeditor/resources"/>
 		<mkdir dir="${org.jboss.esb.installationdirectory}/tools/configeditor/dist"/>
-		
+        <mkdir dir="${org.jboss.esb.installationdirectory}/tools/contract"/>
+
 		<copy file="tools/configeditor/editor/dist/jbossesb-config-editor.war" todir="${org.jboss.esb.installationdirectory}/tools/configeditor/dist"/>
 		<copy file="tools/configeditor/editor/resources/action-templates.xml" todir="${org.jboss.esb.installationdirectory}/tools/configeditor/resources"/>
 		<copy file="tools/configeditor/editor/README.txt" todir="${org.jboss.esb.installationdirectory}/tools/configeditor"/>
-	</target>
+        <copy file="tools/console/contract-web/build/contract.war" todir="${org.jboss.esb.installationdirectory}/tools/contract" failonerror="false" />
+    </target>
 
 	<!-- produce a product distribution -->
 

Modified: labs/jbossesb/trunk/product/install/build.xml
===================================================================
--- labs/jbossesb/trunk/product/install/build.xml	2007-08-28 10:44:47 UTC (rev 14703)
+++ labs/jbossesb/trunk/product/install/build.xml	2007-08-28 11:35:14 UTC (rev 14704)
@@ -140,8 +140,12 @@
           <copy todir="${deploy.dir}/soapui-client.sar">
               <fileset dir="${org.jboss.esb.dist.lib}/soapui-client.sar" excludes="${messaging.excludes}"/>
           </copy>
-        </target>
 
+          <!-- contracts app -->
+          <copy file="../tools/contract/contract.war" todir="${deploy.dir}" />
+
+    </target>
+
     <target name="undeploy" depends="check.deploy.props, undeploy.bindings" description="Undeploy ESB components.">
         <delete dir="${deploy.dir}/jbossesb.sar" />
         <delete dir="${deploy.dir}/jbossesb.esb" />
@@ -151,6 +155,7 @@
         <delete dir="${deploy.dir}/spring.esb" />
         <delete dir="${deploy.dir}/soap.esb" />
         <delete dir="${deploy.dir}/soapui-client.sar" />
+        <delete dir="${deploy.dir}/contract.war" />
     </target>
 
         <property name="org.jboss.esb.tomcat.55lib"
@@ -212,7 +217,7 @@
 		</copy>
 	</target>
 
-	<target name="deployIntros">
+    <target name="deployIntros">
 		<echo message="***** DEPRECATED: Sorry, this target has been deprecated.  Please run the 'patch-jbossws' target." />
 	</target>
 	

Deleted: labs/jbossesb/trunk/product/samples/quickstarts/aggregator/smooks-cdr.lst
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/aggregator/smooks-cdr.lst	2007-08-28 10:44:47 UTC (rev 14703)
+++ labs/jbossesb/trunk/product/samples/quickstarts/aggregator/smooks-cdr.lst	2007-08-28 11:35:14 UTC (rev 14704)
@@ -1,10 +0,0 @@
-####################################################
-# Uncomment out to load config from database
-####################################################
-# http://localhost:8080/jboss-esb-console/transform/smooks-config.jsf
-
-####################################################
-# Uncomment out to load config from local XML file
-####################################################
-/smooks-res.xml
-/org/milyn/templating/templating-cdu-creators-0.1.cdrl

Deleted: labs/jbossesb/trunk/product/samples/quickstarts/fun_cbr/smooks-cdr.lst
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/fun_cbr/smooks-cdr.lst	2007-08-28 10:44:47 UTC (rev 14703)
+++ labs/jbossesb/trunk/product/samples/quickstarts/fun_cbr/smooks-cdr.lst	2007-08-28 11:35:14 UTC (rev 14704)
@@ -1,10 +0,0 @@
-####################################################
-# Uncomment out to load config from database
-####################################################
-# http://localhost:8080/jboss-esb-console/transform/smooks-config.jsf
-
-####################################################
-# Uncomment out to load config from local XML file
-####################################################
-/smooks-res.xml
-/org/milyn/templating/templating-cdu-creators-0.1.cdrl

Modified: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2XML_date_manipulation/README.txt
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2XML_date_manipulation/README.txt	2007-08-28 10:44:47 UTC (rev 14703)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2XML_date_manipulation/README.txt	2007-08-28 11:35:14 UTC (rev 14704)
@@ -57,14 +57,6 @@
     folder (line 31).  The listener configuration then executes the
     "SmooksTransformer" action for the Message Exchange between "A" and "B".
 
-  smooks-cdr.lst:
-    This file is used by the JBoss ESB Transformation Service to list the
-    Transformation resource configuration URIs.  Out of the box, the
-    smoooks-cdr.lst file in this Quickstart refers to 2 resource URIs, both of
-    which are classpath based.  It also has a commented out listing for
-    accessing Transformation Configurations managed by the JBoss ESB
-    Administration Console (see below).
-
   smooks-res.xml:
     This file defines the Transformations for the Quickstart.  This time, there
     are a number of transformation configurations, all "targeted" at the same




More information about the jboss-svn-commits mailing list