You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by pd...@apache.org on 2006/06/21 20:58:51 UTC

svn commit: r416070 - in /incubator/servicemix/trunk: servicemix-common/pom.xml servicemix-http/pom.xml servicemix-jms/pom.xml servicemix-soap/pom.xml

Author: pdodds
Date: Wed Jun 21 11:58:51 2006
New Revision: 416070

URL: http://svn.apache.org/viewvc?rev=416070&view=rev
Log:
Updated poms to enable the use based on the new shared library handling

Modified:
    incubator/servicemix/trunk/servicemix-common/pom.xml
    incubator/servicemix/trunk/servicemix-http/pom.xml
    incubator/servicemix/trunk/servicemix-jms/pom.xml
    incubator/servicemix/trunk/servicemix-soap/pom.xml

Modified: incubator/servicemix/trunk/servicemix-common/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/servicemix-common/pom.xml?rev=416070&r1=416069&r2=416070&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-common/pom.xml (original)
+++ incubator/servicemix/trunk/servicemix-common/pom.xml Wed Jun 21 11:58:51 2006
@@ -29,7 +29,7 @@
   </parent>
 
   <artifactId>servicemix-common</artifactId>
-  <packaging>jar</packaging>
+  <packaging>jbi-shared-library</packaging>
   <name>ServiceMix :: Common</name>
   <description>Common library for binding component and service engines</description>
   
@@ -75,4 +75,13 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
+  
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.servicemix.tooling</groupId>
+        <artifactId>jbi-maven-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </build>
 </project>

Modified: incubator/servicemix/trunk/servicemix-http/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/servicemix-http/pom.xml?rev=416070&r1=416069&r2=416070&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-http/pom.xml (original)
+++ incubator/servicemix/trunk/servicemix-http/pom.xml Wed Jun 21 11:58:51 2006
@@ -40,6 +40,10 @@
       <artifactId>servicemix-soap</artifactId>
     </dependency>
     <dependency>
+      <groupId>${pom.groupId}</groupId>
+      <artifactId>servicemix-common</artifactId>
+    </dependency>
+    <dependency>
       <groupId>commons-httpclient</groupId>
       <artifactId>commons-httpclient</artifactId>
     </dependency>

Modified: incubator/servicemix/trunk/servicemix-jms/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/servicemix-jms/pom.xml?rev=416070&r1=416069&r2=416070&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-jms/pom.xml (original)
+++ incubator/servicemix/trunk/servicemix-jms/pom.xml Wed Jun 21 11:58:51 2006
@@ -41,6 +41,10 @@
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
+      <artifactId>servicemix-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>${pom.groupId}</groupId>
       <artifactId>servicemix-core</artifactId>
       <scope>provided</scope>
     </dependency>

Modified: incubator/servicemix/trunk/servicemix-soap/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/servicemix-soap/pom.xml?rev=416070&r1=416069&r2=416070&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-soap/pom.xml (original)
+++ incubator/servicemix/trunk/servicemix-soap/pom.xml Wed Jun 21 11:58:51 2006
@@ -29,7 +29,7 @@
   </parent>
 
   <artifactId>servicemix-soap</artifactId>
-  <packaging>jar</packaging>
+  <packaging>jbi-shared-library</packaging>
   <name>ServiceMix :: SOAP</name>
   <description>SOAP Stack</description>
 
@@ -37,6 +37,7 @@
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>servicemix-common</artifactId>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
@@ -86,6 +87,10 @@
             </goals>
           </execution>
         </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.servicemix.tooling</groupId>
+        <artifactId>jbi-maven-plugin</artifactId>
       </plugin>
     </plugins>
   </build>