[overlord-commits] Overlord SVN: r192 - in cdl/trunk/samples: jbossesb and 2 other directories.

overlord-commits at lists.jboss.org overlord-commits at lists.jboss.org
Mon Jul 21 07:34:34 EDT 2008


Author: jeff.yuchang
Date: 2008-07-21 07:34:33 -0400 (Mon, 21 Jul 2008)
New Revision: 192

Modified:
   cdl/trunk/samples/jbossesb/README.txt
   cdl/trunk/samples/jbossesb/broker/pom.xml
   cdl/trunk/samples/jbossesb/purchasing/pom.xml
   cdl/trunk/samples/pom.xml
Log:
* Extract the common attribte to the parent pom.xml, so that it can be reused among its child projects.


Modified: cdl/trunk/samples/jbossesb/README.txt
===================================================================
--- cdl/trunk/samples/jbossesb/README.txt	2008-07-18 14:18:51 UTC (rev 191)
+++ cdl/trunk/samples/jbossesb/README.txt	2008-07-21 11:34:33 UTC (rev 192)
@@ -17,8 +17,8 @@
 Settings required to edit before running:
 ========================================
 
-File: purchasing/pom.xml, broker/pom.xml for purchasing example and broker's respectively.
-- Update the "deploy.dir" variable to your JBossAS server directory.
+File: $samples/pom.xml 
+- Update the "deploy.dir" property value to your JBossAS server directory.
 
 - Before jbossesb-rosetta.jar and jbossesb-config-model.jar get published in jboss maven repository, you need to install these two artifacts into 
 your local repository by using following commands:

Modified: cdl/trunk/samples/jbossesb/broker/pom.xml
===================================================================
--- cdl/trunk/samples/jbossesb/broker/pom.xml	2008-07-18 14:18:51 UTC (rev 191)
+++ cdl/trunk/samples/jbossesb/broker/pom.xml	2008-07-21 11:34:33 UTC (rev 192)
@@ -15,13 +15,7 @@
 		<version>1.0-SNAPSHOT</version>
 	</parent>
 
-	<properties>
-	    <hibernate-commons-annotations>3.0.0.ga</hibernate-commons-annotations>
-		<hibernate-tools-version>3.2.0.ga</hibernate-tools-version>
-		<hsqldb-version>1.8.0.7</hsqldb-version>
-	</properties>
-	
-		<dependencies>	
+	<dependencies>	
 			<dependency>
 				<groupId>log4j</groupId>
 				<artifactId>log4j</artifactId>
@@ -95,7 +89,6 @@
 			    <phase>install</phase>
 			    <configuration>
 			      <tasks>
-                   		   <property name="deploy.dir" value="/var/local/jboss/server/default/deploy" />
 				   <copy file="target/broker.esb" todir="${deploy.dir}" overwrite="true" />
 			      </tasks>
 			    </configuration>

Modified: cdl/trunk/samples/jbossesb/purchasing/pom.xml
===================================================================
--- cdl/trunk/samples/jbossesb/purchasing/pom.xml	2008-07-18 14:18:51 UTC (rev 191)
+++ cdl/trunk/samples/jbossesb/purchasing/pom.xml	2008-07-21 11:34:33 UTC (rev 192)
@@ -15,12 +15,6 @@
 		<version>1.0-SNAPSHOT</version>
 	</parent>
 
-	<properties>
-	    <hibernate-commons-annotations>3.0.0.ga</hibernate-commons-annotations>
-		<hibernate-tools-version>3.2.0.ga</hibernate-tools-version>
-		<hsqldb-version>1.8.0.7</hsqldb-version>
-	</properties>
-	
 		<dependencies>	
 			<dependency>
 				<groupId>log4j</groupId>
@@ -101,7 +95,6 @@
 			    <phase>install</phase>
 			    <configuration>
 			      <tasks>
-                   <property name="deploy.dir" value="/var/local/jboss/server/default/deploy" />
 				   <copy file="target/purchasing.esb" todir="${deploy.dir}" overwrite="true" />
 			      </tasks>
 			    </configuration>

Modified: cdl/trunk/samples/pom.xml
===================================================================
--- cdl/trunk/samples/pom.xml	2008-07-18 14:18:51 UTC (rev 191)
+++ cdl/trunk/samples/pom.xml	2008-07-21 11:34:33 UTC (rev 192)
@@ -15,6 +15,15 @@
 		<version>1.0-SNAPSHOT</version>
 	</parent>
 
+	<properties>
+	   <deploy.dir>/var/local/jboss/server/default/deploy</deploy.dir>
+	   <hibernate-commons-annotations>3.0.0.ga</hibernate-commons-annotations>
+	   <hibernate-tools-version>3.2.0.ga</hibernate-tools-version>
+	   <hsqldb-version>1.8.0.7</hsqldb-version>
+
+    </properties>
+
+
 	<modules>
 		<module>jbossesb/purchasing</module>
 		<module>jbossesb/broker</module>




More information about the overlord-commits mailing list