[overlord-commits] Overlord SVN: r271 - in cdl/trunk: distribution and 11 other directories.

overlord-commits at lists.jboss.org overlord-commits at lists.jboss.org
Sun Aug 24 12:06:49 EDT 2008


Author: jeff.yuchang
Date: 2008-08-24 12:06:48 -0400 (Sun, 24 Aug 2008)
New Revision: 271

Added:
   cdl/trunk/distribution/pom.xml
   cdl/trunk/distribution/src/
   cdl/trunk/distribution/src/main/
   cdl/trunk/distribution/src/main/assembly/
   cdl/trunk/distribution/src/main/assembly/bin.xml
   cdl/trunk/distribution/src/main/assembly/src.xml
   cdl/trunk/distribution/src/main/release/
   cdl/trunk/distribution/src/main/release/JBossORG-EULA.txt
   cdl/trunk/distribution/src/main/release/README.txt
   cdl/trunk/distribution/src/main/release/ReleaseNotes.txt
Modified:
   cdl/trunk/pom.xml
   cdl/trunk/runtime/jbossesb-assembly/pom.xml
   cdl/trunk/runtime/jbossesb/pom.xml
   cdl/trunk/samples/jbossesb/broker/pom.xml
   cdl/trunk/samples/jbossesb/creditAgency/pom.xml
   cdl/trunk/samples/jbossesb/purchasing/pom.xml
   cdl/trunk/samples/jbossesb/supplier/pom.xml
   cdl/trunk/samples/pom.xml
Log:
* SOAG-51. Add the assembly plugin to build distribution for CDL.



Added: cdl/trunk/distribution/pom.xml
===================================================================
--- cdl/trunk/distribution/pom.xml	                        (rev 0)
+++ cdl/trunk/distribution/pom.xml	2008-08-24 16:06:48 UTC (rev 271)
@@ -0,0 +1,81 @@
+<!--
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, JBoss Inc., and others contributors as indicated 
+ * by the @authors tag. All rights reserved. 
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors. 
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A 
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+ * MA  02110-1301, USA.
+ * 
+ * (C) 2008
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.jboss.soa.overlord.cdl</groupId>
+    <artifactId>distribution</artifactId>
+    <packaging>pom</packaging>
+    <name>Overlord::CDL::Distribution</name>
+    <version>1.0-SNAPSHOT</version>
+    <url>http://www.jboss.org/soag</url>
+
+    <properties>
+        <maven.test.skip>true</maven.test.skip>
+		<cdl.version>${project.version}</cdl.version>
+    </properties>
+	
+    <dependencies>
+        <dependency>
+            <groupId>org.jboss.soa.overlord.cdl.runtime</groupId>
+            <artifactId>jbossesb</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+         <dependency>
+            <groupId>org.jboss.soa.overlord.cdl.runtime</groupId>
+            <artifactId>jbossesb-assembly</artifactId>
+            <version>${pom.version}</version>
+            <type>esb</type>
+        </dependency>
+   </dependencies> 
+
+    <build>
+	    <finalName>overlord-cdl-${project.version}</finalName>
+        <resources>
+            <resource>
+                <directory>src/main/java</directory>
+                <includes>
+                    <include>**/*</include>
+                </includes>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>distribution-package</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>single</goal>
+                        </goals>
+                        <configuration>
+                            <descriptors>
+                                <descriptor>src/main/assembly/bin.xml</descriptor>
+                            </descriptors>
+                            <tarLongFileMode>gnu</tarLongFileMode>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Added: cdl/trunk/distribution/src/main/assembly/bin.xml
===================================================================
--- cdl/trunk/distribution/src/main/assembly/bin.xml	                        (rev 0)
+++ cdl/trunk/distribution/src/main/assembly/bin.xml	2008-08-24 16:06:48 UTC (rev 271)
@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, JBoss Inc., and others contributors as indicated 
+ * by the @authors tag. All rights reserved. 
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors. 
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A 
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+ * MA  02110-1301, USA.
+ * 
+ * (C) 2008
+-->
+<assembly>
+    <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
+    <id></id>
+    <includeBaseDirectory>true</includeBaseDirectory>
+    <formats>
+        <format>zip</format>
+    </formats>
+
+    <fileSets>
+
+        <fileSet>
+            <directory>eclipse</directory>
+            <outputDirectory>tools</outputDirectory>
+        </fileSet>
+
+		<fileSet>
+		    <directory>validator/jbossesb</directory>
+			<outputDirectory>modules/validator-jbossesb</outputDirectory>
+		</fileSet>
+
+        <!--Copy files like License, Contributor etc -->	
+    	<fileSet>
+            <directory>src/main/release</directory>
+            <outputDirectory>.</outputDirectory>
+            <includes>
+              <include>*.txt</include>
+            </includes>
+        </fileSet>
+
+        <fileSet>
+            <directory>../docs</directory>
+            <outputDirectory>docs</outputDirectory>
+            <includes>
+               <include>**/*.pdf</include>
+            </includes>
+        </fileSet>
+	
+        <fileSet>
+            <directory>../samples</directory>
+            <outputDirectory>samples</outputDirectory>
+            <includes>
+               <include>**/*</include>
+            </includes>
+            <excludes>
+               <exclude>**/pom.xml</exclude>
+               <exclude>**/.classpath</exclude>
+               <exclude>**/.project</exclude>
+               <exclude>**/.settings</exclude>
+               <exclude>**/.settings/**/*</exclude>
+               <exclude>**/target</exclude>
+	           <exclude>**/target/**/*</exclude>
+            </excludes>
+        </fileSet>
+
+        
+    </fileSets>
+
+    <dependencySets>
+        <dependencySet>
+            <outputDirectory>samples/jbossesb/libs</outputDirectory>
+            <includes>
+               <include>org.jboss.soa.overlord.cdl.runtime:jbossesb</include>
+               <include>org.jboss.jbossesb:rosetta</include>
+	           <include>org.jboss.jbossesb:config-model</include>
+            </includes>
+        </dependencySet>
+        <dependencySet>
+            <outputDirectory>modules</outputDirectory>
+            <includes>
+               <include>org.jboss.soa.overlord.cdl.runtime:jbossesb-assembly</include>
+            </includes>
+        </dependencySet>
+    </dependencySets>
+
+</assembly>

Added: cdl/trunk/distribution/src/main/assembly/src.xml
===================================================================
--- cdl/trunk/distribution/src/main/assembly/src.xml	                        (rev 0)
+++ cdl/trunk/distribution/src/main/assembly/src.xml	2008-08-24 16:06:48 UTC (rev 271)
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+-->
+<assembly>
+    <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
+    <id>src</id>
+    <includeBaseDirectory>false</includeBaseDirectory>
+    <formats>
+        <format>tar.gz</format>
+        <format>zip</format>
+    </formats>
+
+    <fileSets>
+        <fileSet>
+            <directory>src/main/release</directory>
+            <outputDirectory>apache-cxf-${cxf.version}-src</outputDirectory>
+            <includes>
+                <include>licenses/*.*</include>
+                <include>README</include>
+                <include>BUILDING.txt</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>target/maven-shared-archive-resources/META-INF</directory>
+            <outputDirectory>apache-cxf-${cxf.version}-src</outputDirectory>
+            <includes>
+                <include>*</include>
+            </includes>
+            <excludes>
+                <exclude>DEPENDENCIES</exclude>
+            </excludes>
+        </fileSet>
+        <fileSet>
+            <directory>..</directory>
+            <outputDirectory>apache-cxf-${cxf.version}-src</outputDirectory>
+            <includes>
+                <include>**/*</include>
+            </includes>
+            <excludes>
+                <exclude>build.xml</exclude>
+                <exclude>distribution/build.xml</exclude>
+                <exclude>distribution/maven-build.xml</exclude>
+                <exclude>benchmark</exclude>
+                <exclude>benchmark/**/*</exclude>
+                <exclude>**/target</exclude>
+                <exclude>**/target/**/*</exclude>
+                <exclude>**/build</exclude>
+                <exclude>**/build/**/*</exclude>
+                <exclude>**/.settings</exclude>
+                <exclude>**/.pmd</exclude>
+                <exclude>**/.checkstyle</exclude>
+                <exclude>**/.ruleset</exclude>
+                <exclude>**/pmd-eclipse.log</exclude>
+                <exclude>**/.classpath</exclude>
+                <exclude>**/.project</exclude>
+                <exclude>**/.wtpmodules</exclude>
+                <exclude>**/surefire*</exclude>
+                <exclude>**/cobertura.ser</exclude>
+                <exclude>**/velocity.log</exclude>
+                <exclude>bin</exclude>
+                <exclude>bin/*</exclude>
+                <exclude>**/var/journal</exclude>
+                <exclude>**/build.out*</exclude>
+                <exclude>STATUS</exclude>
+                <exclude>KEYS</exclude>
+            </excludes>
+        </fileSet>
+    </fileSets>
+</assembly>

Added: cdl/trunk/distribution/src/main/release/JBossORG-EULA.txt
===================================================================
--- cdl/trunk/distribution/src/main/release/JBossORG-EULA.txt	                        (rev 0)
+++ cdl/trunk/distribution/src/main/release/JBossORG-EULA.txt	2008-08-24 16:06:48 UTC (rev 271)
@@ -0,0 +1,107 @@
+LICENSE AGREEMENT
+JBOSS(r)
+
+This License Agreement governs the use of the Software Packages and any updates to the Software 
+Packages, regardless of the delivery mechanism.  Each Software Package is a collective work 
+under U.S. Copyright Law.  Subject to the following terms, Red Hat, Inc. ("Red Hat") grants to 
+the user ("Client") a license to the applicable collective work(s) pursuant to the 
+GNU Lesser General Public License v. 2.1 except for the following Software Packages: 
+(a) JBoss Portal Forums and JBoss Transactions JTS, each of which is licensed pursuant to the 
+GNU General Public License v.2; 
+
+(b) JBoss Rules, which is licensed pursuant to the Apache  License v.2.0;
+
+(c) an optional download for JBoss Cache for the Berkeley DB for Java database, which is licensed under the 
+(open source) Sleepycat License (if Client does not wish to use the open source version of this database, 
+it may purchase a license from Sleepycat Software); 
+
+and (d) the BPEL extension for JBoss jBPM, which is licensed under the Common Public License v.1, 
+and, pursuant to the OASIS BPEL4WS standard, requires parties wishing to redistribute to enter various 
+royalty-free patent licenses.  
+
+Each of the foregoing licenses is available at http://www.opensource.org/licenses/index.php.
+
+1.  The Software.  "Software Packages" refer to the various software modules that are created and made available 
+for distribution by the JBoss.org open source community at http://www.jboss.org.   Each of the Software Packages 
+may be comprised of hundreds of software components.  The end user license agreement for each component is located in 
+the component's source code.  With the exception of certain image files identified in Section 2 below, 
+the license terms for the components permit Client to copy, modify, and redistribute the component, 
+in both source code and binary code forms.  This agreement does not limit Client's rights under, 
+or grant Client rights that supersede, the license terms of any particular component.
+
+2.  Intellectual Property Rights.  The Software Packages are owned by Red Hat and others and are protected under copyright 
+and other laws.  Title to the Software Packages and any component, or to any copy, modification, or merged portion shall 
+remain with the aforementioned, subject to the applicable license.  The "JBoss" trademark, "Red Hat" trademark, the 
+individual Software Package trademarks, and the "Shadowman" logo are registered trademarks of Red Hat and its affiliates 
+in the U.S. and other countries.  This agreement permits Client to distribute unmodified copies of the Software Packages 
+using the Red Hat trademarks that Red Hat has inserted in the Software Packages on the condition that Client follows Red Hat's 
+trademark guidelines for those trademarks located at http://www.redhat.com/about/corporate/trademark/.  Client must abide by 
+these trademark guidelines when distributing the Software Packages, regardless of whether the Software Packages have been modified. 
+If Client modifies the Software Packages, then Client must replace all Red Hat trademarks and logos identified at 
+http://www.jboss.com/company/logos, unless a separate agreement with Red Hat is executed or other permission granted.  
+Merely deleting the files containing the Red Hat trademarks may corrupt the Software Packages.  
+
+3.  Limited Warranty.  Except as specifically stated in this Paragraph 3 or a license for a particular 
+component, to the maximum extent permitted under applicable law, the Software Packages and the 
+components are provided and licensed "as is" without warranty of any kind, expressed or implied, 
+including the implied warranties of merchantability, non-infringement or fitness for a particular purpose.  
+Red Hat warrants that the media on which Software Packages may be furnished will be free from defects in 
+materials and manufacture under normal use for a period of 30 days from the date of delivery to Client.  
+Red Hat does not warrant that the functions contained in the Software Packages will meet Client's requirements 
+or that the operation of the Software Packages will be entirely error free or appear precisely as described 
+in the accompanying documentation. This warranty extends only to the party that purchases the Services 
+pertaining to the Software Packages from Red Hat or a Red Hat authorized distributor. 
+
+4.  Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, the remedies 
+described below are accepted by Client as its only remedies.  Red Hat's entire liability, and Client's 
+exclusive remedies, shall be: If the Software media is defective, Client may return it within 30 days of 
+delivery along with a copy of Client's payment receipt and Red Hat, at its option, will replace it or 
+refund the money paid by Client for the Software.  To the maximum extent permitted by applicable law, 
+Red Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential 
+damages, including lost profits or lost savings arising out of the use or inability to use the Software, 
+even if Red Hat or such dealer has been advised of the possibility of such damages.  In no event shall 
+Red Hat's liability under this agreement exceed the amount that Client paid to Red Hat under this 
+Agreement during the twelve months preceding the action.
+
+5.  Export Control.  As required by U.S. law, Client represents and warrants that it: 
+(a) understands that the Software Packages are subject to export controls under the 
+U.S. Commerce Department's Export Administration Regulations ("EAR"); 
+
+(b) is not located in a prohibited destination country under the EAR or U.S. sanctions regulations 
+(currently Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria); 
+
+(c) will not export, re-export, or transfer the Software Packages to any prohibited destination, entity, 
+or individual without the necessary export license(s) or authorizations(s) from the U.S. Government; 
+
+(d) will not use or transfer the Software Packages for use in any sensitive nuclear, chemical or 
+biological weapons, or missile technology end-uses unless authorized by the U.S. Government by 
+regulation or specific license; 
+
+(e) understands and agrees that if it is in the United States and exports or transfers the Software 
+Packages to eligible end users, it will, as required by EAR Section 740.17(e), submit semi-annual 
+reports to the Commerce Department's Bureau of Industry & Security (BIS), which include the name and 
+address (including country) of each transferee; 
+
+and (f) understands that countries other than the United States may restrict the import, use, or 
+export of encryption products and that it shall be solely responsible for compliance with any such 
+import, use, or export restrictions.
+
+6.  Third Party Programs. Red Hat may distribute third party software programs with the Software Packages 
+that are not part of the Software Packages and which Client must install separately.  These third party 
+programs are subject to their own license terms.  The license terms either accompany the programs or 
+can be viewed at http://www.redhat.com/licenses/.  If Client does not agree to abide by the applicable 
+license terms for such programs, then Client may not install them.  If Client wishes to install the programs 
+on more than one system or transfer the programs to another party, then Client must contact the licensor 
+of the programs.
+
+7.  General.  If any provision of this agreement is held to be unenforceable, that shall not affect the 
+enforceability of the remaining provisions.  This License Agreement shall be governed by the laws of the 
+State of North Carolina and of the United States, without regard to any conflict of laws provisions, 
+except that the United Nations Convention on the International Sale of Goods shall not apply.
+
+Copyright 2006 Red Hat, Inc.  All rights reserved.  
+"JBoss" and the JBoss logo are registered trademarks of Red Hat, Inc.  
+All other trademarks are the property of their respective owners. 
+
+	Page 1 of 1	18 October 2006
+

Added: cdl/trunk/distribution/src/main/release/README.txt
===================================================================
--- cdl/trunk/distribution/src/main/release/README.txt	                        (rev 0)
+++ cdl/trunk/distribution/src/main/release/README.txt	2008-08-24 16:06:48 UTC (rev 271)
@@ -0,0 +1 @@
+--README.txt (TBD)

Added: cdl/trunk/distribution/src/main/release/ReleaseNotes.txt
===================================================================
--- cdl/trunk/distribution/src/main/release/ReleaseNotes.txt	                        (rev 0)
+++ cdl/trunk/distribution/src/main/release/ReleaseNotes.txt	2008-08-24 16:06:48 UTC (rev 271)
@@ -0,0 +1 @@
+To Be Done.

Modified: cdl/trunk/pom.xml
===================================================================
--- cdl/trunk/pom.xml	2008-08-24 15:50:13 UTC (rev 270)
+++ cdl/trunk/pom.xml	2008-08-24 16:06:48 UTC (rev 271)
@@ -7,9 +7,9 @@
 	<version>1.0-SNAPSHOT</version>
 	<packaging>pom</packaging>
 	<name>Overlord::CDL</name>
-	<url>http://www.jboss.org/overlord</url>
+	<url>http://www.jboss.org/soag</url>
 	<description>
-		JBoss Overlord.
+		JBoss Overlord CDL.
 	</description>
 	<scm>
 		<connection>scm:svn:https://svn.jboss.org/repos/soag/cdl/trunk</connection>
@@ -126,7 +126,6 @@
 						<phase>verify</phase>
 						<goals>
 							<goal>jar</goal>
-							<goal>test-jar</goal>
 						</goals>
 					</execution>
 				</executions>
@@ -140,38 +139,6 @@
 					</includes>
 				</configuration>
 			</plugin>
-			<!-- 
-           Build a test-jar for each project, so that src/test/* resources and classes can be used
-           in other projects.  Also customize how the jar files are assembled.
-           -->
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-jar-plugin</artifactId>
-				<executions>
-					<execution>
-						<goals>
-							<goal>test-jar</goal>
-						</goals>
-					</execution>
-				</executions>
-				<configuration>
-					<archive>
-						<manifest>
-							<addDefaultSpecificationEntries>
-								true
-							</addDefaultSpecificationEntries>
-							<addDefaultImplementationEntries>
-								true
-							</addDefaultImplementationEntries>
-						</manifest>
-						<manifestEntries>
-							<Implementation-URL>
-								${pom.url}
-							</Implementation-URL>
-						</manifestEntries>
-					</archive>
-				</configuration>
-			</plugin>
 		</plugins>
 	</build>
 

Modified: cdl/trunk/runtime/jbossesb/pom.xml
===================================================================
--- cdl/trunk/runtime/jbossesb/pom.xml	2008-08-24 15:50:13 UTC (rev 270)
+++ cdl/trunk/runtime/jbossesb/pom.xml	2008-08-24 16:06:48 UTC (rev 271)
@@ -2,8 +2,8 @@
 	 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 	<modelVersion>4.0.0</modelVersion>
-	<groupId>org.jboss.soa.overlord.cdl</groupId>
-	<artifactId>runtime-jbossesb</artifactId>
+	<groupId>org.jboss.soa.overlord.cdl.runtime</groupId>
+	<artifactId>jbossesb</artifactId>
 	<version>1.0-SNAPSHOT</version>
 	<packaging>jar</packaging>
 	<name>Overlord::CDL::Runtime::JBossESB</name>

Modified: cdl/trunk/runtime/jbossesb-assembly/pom.xml
===================================================================
--- cdl/trunk/runtime/jbossesb-assembly/pom.xml	2008-08-24 15:50:13 UTC (rev 270)
+++ cdl/trunk/runtime/jbossesb-assembly/pom.xml	2008-08-24 16:06:48 UTC (rev 271)
@@ -2,7 +2,7 @@
 	 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 	<modelVersion>4.0.0</modelVersion>
-	<groupId>org.jboss.soa.overlord.cdl</groupId>
+	<groupId>org.jboss.soa.overlord.cdl.runtime</groupId>
 	<artifactId>jbossesb-assembly</artifactId>
 	<version>1.0-SNAPSHOT</version>
 	<packaging>jboss-esb</packaging>
@@ -23,8 +23,8 @@
 
 		<dependencies>	
 			<dependency>
-				<groupId>org.jboss.soa.overlord.cdl</groupId>
-				<artifactId>runtime-jbossesb</artifactId>
+				<groupId>org.jboss.soa.overlord.cdl.runtime</groupId>
+				<artifactId>jbossesb</artifactId>
 				<version>1.0-SNAPSHOT</version>
 			</dependency>
 
@@ -50,7 +50,7 @@
 		</dependencies>
 
 		<build>
-		    <finalName>overlord-cdl-jbossesb</finalName>
+		    <finalName>overlord-cdl-runtime-jbossesb</finalName>
 		    <plugins>
 		      <plugin>
 			<groupId>org.apache.maven.plugins</groupId>

Modified: cdl/trunk/samples/jbossesb/broker/pom.xml
===================================================================
--- cdl/trunk/samples/jbossesb/broker/pom.xml	2008-08-24 15:50:13 UTC (rev 270)
+++ cdl/trunk/samples/jbossesb/broker/pom.xml	2008-08-24 16:06:48 UTC (rev 271)
@@ -23,8 +23,8 @@
 				<scope>provided</scope>
 			</dependency>
 			<dependency>
-				<groupId>org.jboss.soa.overlord.cdl</groupId>
-				<artifactId>runtime-jbossesb</artifactId>
+				<groupId>org.jboss.soa.overlord.cdl.runtime</groupId>
+				<artifactId>jbossesb</artifactId>
 				<version>1.0-SNAPSHOT</version>
 				<scope>provided</scope>
 			</dependency>

Modified: cdl/trunk/samples/jbossesb/creditAgency/pom.xml
===================================================================
--- cdl/trunk/samples/jbossesb/creditAgency/pom.xml	2008-08-24 15:50:13 UTC (rev 270)
+++ cdl/trunk/samples/jbossesb/creditAgency/pom.xml	2008-08-24 16:06:48 UTC (rev 271)
@@ -23,8 +23,8 @@
 				<scope>provided</scope>
 			</dependency>
 			<dependency>
-				<groupId>org.jboss.soa.overlord.cdl</groupId>
-				<artifactId>runtime-jbossesb</artifactId>
+				<groupId>org.jboss.soa.overlord.cdl.runtime</groupId>
+				<artifactId>jbossesb</artifactId>
 				<version>1.0-SNAPSHOT</version>
 				<scope>provided</scope>
 			</dependency>

Modified: cdl/trunk/samples/jbossesb/purchasing/pom.xml
===================================================================
--- cdl/trunk/samples/jbossesb/purchasing/pom.xml	2008-08-24 15:50:13 UTC (rev 270)
+++ cdl/trunk/samples/jbossesb/purchasing/pom.xml	2008-08-24 16:06:48 UTC (rev 271)
@@ -23,8 +23,8 @@
 				<scope>provided</scope>
 			</dependency>
 			<dependency>
-				<groupId>org.jboss.soa.overlord.cdl</groupId>
-				<artifactId>runtime-jbossesb</artifactId>
+				<groupId>org.jboss.soa.overlord.cdl.runtime</groupId>
+				<artifactId>jbossesb</artifactId>
 				<version>1.0-SNAPSHOT</version>
 				<scope>provided</scope>
 			</dependency>

Modified: cdl/trunk/samples/jbossesb/supplier/pom.xml
===================================================================
--- cdl/trunk/samples/jbossesb/supplier/pom.xml	2008-08-24 15:50:13 UTC (rev 270)
+++ cdl/trunk/samples/jbossesb/supplier/pom.xml	2008-08-24 16:06:48 UTC (rev 271)
@@ -23,8 +23,8 @@
 				<scope>provided</scope>
 			</dependency>
 			<dependency>
-				<groupId>org.jboss.soa.overlord.cdl</groupId>
-				<artifactId>runtime-jbossesb</artifactId>
+				<groupId>org.jboss.soa.overlord.cdl.runtime</groupId>
+				<artifactId>jbossesb</artifactId>
 				<version>1.0-SNAPSHOT</version>
 				<scope>provided</scope>
 			</dependency>

Modified: cdl/trunk/samples/pom.xml
===================================================================
--- cdl/trunk/samples/pom.xml	2008-08-24 15:50:13 UTC (rev 270)
+++ cdl/trunk/samples/pom.xml	2008-08-24 16:06:48 UTC (rev 271)
@@ -7,7 +7,7 @@
 	<packaging>pom</packaging>
 	<version>1.0-SNAPSHOT</version>
 	<name>Overlord::CDL::Samples</name>
-	<url>http://www.jboss.org/overlord</url>
+	<url>http://www.jboss.org/soag</url>
 
     <parent>
 	    <groupId>org.jboss.soa.overlord</groupId>




More information about the overlord-commits mailing list