You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2007/08/09 15:37:43 UTC

svn commit: r564203 - in /incubator/servicemix/trunk/archetypes: servicemix-archetypes-itests/ servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/ servicemix-bean-service-unit/ servicemix-binding-component/ servicemix-camel-servic...

Author: gnodet
Date: Thu Aug  9 06:37:42 2007
New Revision: 564203

URL: http://svn.apache.org/viewvc?view=rev&rev=564203
Log:
Add unit test for camel su, fix archetypes location in maven repo

Added:
    incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CamelServiceUnitTest.java
Modified:
    incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-bean-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-binding-component/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-camel-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-camel-service-unit/src/main/resources/archetype-resources/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-drools-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-eip-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-embedded-simple/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-ftp-poller-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-ftp-sender-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-http-consumer-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-http-provider-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-jms-consumer-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-jms-provider-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-jsr181-annotated-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-jsr181-wsdl-first-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-lwcontainer-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-ode-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-saxon-xquery-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-saxon-xslt-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-service-assembly/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-service-engine/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-service-unit/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-shared-library/pom.xml

Modified: incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/pom.xml Thu Aug  9 06:37:42 2007
@@ -146,6 +146,11 @@
       <artifactId>servicemix-drools-service-unit</artifactId>
       <version>${servicemix-version}</version>
     </dependency>
+    <dependency>
+      <groupId>org.apache.servicemix.tooling</groupId>
+      <artifactId>servicemix-camel-service-unit</artifactId>
+      <version>${servicemix-version}</version>
+    </dependency>
   </dependencies>
   
   <build>

Added: incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CamelServiceUnitTest.java
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CamelServiceUnitTest.java?view=auto&rev=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CamelServiceUnitTest.java (added)
+++ incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CamelServiceUnitTest.java Thu Aug  9 06:37:42 2007
@@ -0,0 +1,25 @@
+/*
+ * 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.
+ */
+package org.apache.servicemix.tooling;
+
+public class CamelServiceUnitTest extends AbstractArchetypeTest {
+
+    public void testBeanServiceUnit() throws Exception {
+        testServiceMixArchetype("camel-service-unit");
+    }
+
+}

Modified: incubator/servicemix/trunk/archetypes/servicemix-bean-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-bean-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-bean-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-bean-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-bean-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: BeanServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-binding-component/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-binding-component/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-binding-component/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-binding-component/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-binding-component</artifactId>
   <name>ServiceMix :: Archetypes :: BindingComponent</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-camel-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-camel-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-camel-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-camel-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -28,6 +28,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-camel-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: CamelServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-camel-service-unit/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-camel-service-unit/src/main/resources/archetype-resources/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-camel-service-unit/src/main/resources/archetype-resources/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-camel-service-unit/src/main/resources/archetype-resources/pom.xml Thu Aug  9 06:37:42 2007
@@ -31,6 +31,55 @@
 
   <url>http://www.myorganization.org</url>
 
+  <pluginRepositories>
+    <pluginRepository>
+      <id>apache.incubating</id>
+      <name>Apache Incubating Repository</name>
+      <url>http://people.apache.org/repo/m2-incubating-repository</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+      <releases>
+         <enabled>true</enabled>
+      </releases>
+    </pluginRepository>
+    <pluginRepository>
+      <id>apache.snapshots</id>
+      <name>Apache Snapshots Repository</name>
+      <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+      <releases>
+         <enabled>false</enabled>
+      </releases>
+    </pluginRepository>
+  </pluginRepositories>
+  <repositories>
+    <repository>
+      <id>apache.incubating</id>
+      <name>Apache Incubating Repository</name>
+      <url>http://people.apache.org/repo/m2-incubating-repository</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+      <releases>
+         <enabled>true</enabled>
+      </releases>
+    </repository>
+    <repository>
+      <id>apache.snapshots</id>
+      <name>Apache Snapshots Repository</name>
+      <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+      <releases>
+         <enabled>false</enabled>
+      </releases>
+    </repository>
+  </repositories>
+
   <properties>
   	<camel-version>1.1-SNAPSHOT</camel-version>
     <servicemix-version>3.2-incubating-SNAPSHOT</servicemix-version>
@@ -39,8 +88,8 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.servicemix</groupId>
-      <artifactId>servicemix-core</artifactId>
-      <version>${camel-version}</version>
+      <artifactId>servicemix-camel</artifactId>
+      <version>${servicemix-version}</version>
     </dependency>
 
     <dependency>

Modified: incubator/servicemix/trunk/archetypes/servicemix-drools-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-drools-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-drools-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-drools-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-drools-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: DroolsServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-eip-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-eip-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-eip-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-eip-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-eip-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: EIPServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-embedded-simple/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-embedded-simple/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-embedded-simple/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-embedded-simple/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-embedded-simple</artifactId>
   <name>ServiceMix :: Archetypes :: EmbeddedSimple</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-ftp-poller-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-ftp-poller-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-ftp-poller-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-ftp-poller-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-ftp-poller-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: FtpPollerServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-ftp-sender-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-ftp-sender-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-ftp-sender-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-ftp-sender-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-ftp-sender-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: FtpSenderServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-http-consumer-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-http-consumer-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-http-consumer-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-http-consumer-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-http-consumer-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: HttpConsumerServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-http-provider-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-http-provider-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-http-provider-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-http-provider-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-http-provider-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: HttpProviderServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-jms-consumer-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-jms-consumer-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-jms-consumer-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-jms-consumer-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-jms-consumer-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: JmsConsumerServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-jms-provider-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-jms-provider-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-jms-provider-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-jms-provider-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-jms-provider-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: JmsProviderServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-jsr181-annotated-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-jsr181-annotated-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-jsr181-annotated-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-jsr181-annotated-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-jsr181-annotated-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: Jsr181AnnotatedServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-jsr181-wsdl-first-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-jsr181-wsdl-first-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-jsr181-wsdl-first-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-jsr181-wsdl-first-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-jsr181-wsdl-first-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: Jsr181WsdlFirstServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-lwcontainer-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-lwcontainer-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-lwcontainer-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-lwcontainer-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-lwcontainer-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: LWContainerServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-ode-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-ode-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-ode-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-ode-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-ode-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: ServiceMixODEServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-saxon-xquery-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-saxon-xquery-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-saxon-xquery-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-saxon-xquery-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-saxon-xquery-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: SaxonXQueryServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-saxon-xslt-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-saxon-xslt-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-saxon-xslt-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-saxon-xslt-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-saxon-xslt-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: SaxonXsltServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-service-assembly/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-service-assembly/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-service-assembly/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-service-assembly/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-service-assembly</artifactId>
   <name>ServiceMix :: Archetypes :: ServiceAssembly</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-service-engine/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-service-engine/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-service-engine/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-service-engine/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-service-engine</artifactId>
   <name>ServiceMix :: Archetypes :: ServiceEngine</name>
   

Modified: incubator/servicemix/trunk/archetypes/servicemix-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-service-unit/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-service-unit/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-service-unit/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-service-unit</artifactId>
   <name>ServiceMix :: Archetypes :: ServiceUnit</name>
 

Modified: incubator/servicemix/trunk/archetypes/servicemix-shared-library/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-shared-library/pom.xml?view=diff&rev=564203&r1=564202&r2=564203
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-shared-library/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-shared-library/pom.xml Thu Aug  9 06:37:42 2007
@@ -27,6 +27,7 @@
     <version>3.2-incubating-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.servicemix.tooling</groupId>
   <artifactId>servicemix-shared-library</artifactId>
   <name>ServiceMix :: Archetypes :: SharedLibrary</name>