You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrp4j-dev@portals.apache.org by dl...@apache.org on 2006/12/24 18:02:32 UTC

svn commit: r490043 - in /portals/wsrp4j/trunk: commons-consumer/pom.xml commons-producer/pom.xml commons/pom.xml consumer-proxyportlet/pom.xml consumer-swingconsumer/pom.xml producer/pom.xml

Author: dlouzan
Date: Sun Dec 24 09:02:31 2006
New Revision: 490043

URL: http://svn.apache.org/viewvc?view=rev&rev=490043
Log:
- Updated all dependencies to axis from "axis" <groupId> to "org.apache.axis"
- Modified all dependencies on wsdl4j from "axis" <groupId> to "wsdl4j"
- Added runtime dependencies on persistence-xml and persistence-db to producer, consumer-proxyportlet and consumer-swingconsumer

Modified:
    portals/wsrp4j/trunk/commons-consumer/pom.xml
    portals/wsrp4j/trunk/commons-producer/pom.xml
    portals/wsrp4j/trunk/commons/pom.xml
    portals/wsrp4j/trunk/consumer-proxyportlet/pom.xml
    portals/wsrp4j/trunk/consumer-swingconsumer/pom.xml
    portals/wsrp4j/trunk/producer/pom.xml

Modified: portals/wsrp4j/trunk/commons-consumer/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/commons-consumer/pom.xml?view=diff&rev=490043&r1=490042&r2=490043
==============================================================================
--- portals/wsrp4j/trunk/commons-consumer/pom.xml (original)
+++ portals/wsrp4j/trunk/commons-consumer/pom.xml Sun Dec 24 09:02:31 2006
@@ -49,12 +49,12 @@
     </dependency>
     <dependency>
       <artifactId>axis</artifactId>
-      <groupId>axis</groupId>
+      <groupId>org.apache.axis</groupId>
       <version>${axis.version}</version>
     </dependency>
     <dependency>
       <artifactId>axis-jaxrpc</artifactId>
-      <groupId>axis</groupId>
+      <groupId>org.apache.axis</groupId>
       <version>${axis.version}</version>
     </dependency>
     <dependency>

Modified: portals/wsrp4j/trunk/commons-producer/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/commons-producer/pom.xml?view=diff&rev=490043&r1=490042&r2=490043
==============================================================================
--- portals/wsrp4j/trunk/commons-producer/pom.xml (original)
+++ portals/wsrp4j/trunk/commons-producer/pom.xml Sun Dec 24 09:02:31 2006
@@ -49,7 +49,7 @@
     </dependency>
     <dependency>
       <artifactId>axis</artifactId>
-      <groupId>axis</groupId>
+      <groupId>org.apache.axis</groupId>
       <version>${axis.version}</version>
     </dependency>
     <dependency>

Modified: portals/wsrp4j/trunk/commons/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/commons/pom.xml?view=diff&rev=490043&r1=490042&r2=490043
==============================================================================
--- portals/wsrp4j/trunk/commons/pom.xml (original)
+++ portals/wsrp4j/trunk/commons/pom.xml Sun Dec 24 09:02:31 2006
@@ -82,27 +82,27 @@
   <dependencies>
     <dependency>
       <artifactId>axis</artifactId>
-      <groupId>axis</groupId>
+      <groupId>org.apache.axis</groupId>
       <version>${axis.version}</version>
     </dependency>
     <dependency>
-      <artifactId>portlet-api</artifactId>
-      <groupId>portlet-api</groupId>
-      <version>${portlet-api.version}</version>
-      <scope>provided</scope>
-    </dependency>
-    <dependency>
       <artifactId>axis-jaxrpc</artifactId>
-      <groupId>axis</groupId>
+      <groupId>org.apache.axis</groupId>
       <version>${axis.version}</version>
     </dependency>
     <dependency>
       <artifactId>axis-ant</artifactId>
-      <groupId>axis</groupId>
+      <groupId>org.apache.axis</groupId>
       <version>${axis.version}</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
+      <artifactId>portlet-api</artifactId>
+      <groupId>portlet-api</groupId>
+      <version>${portlet-api.version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
       <artifactId>junit</artifactId>
       <groupId>junit</groupId>
       <version>${junit.version}</version>
@@ -125,8 +125,8 @@
       <scope>compile</scope>
     </dependency>
     <dependency>
-      <artifactId>axis-wsdl4j</artifactId>
-      <groupId>axis</groupId>
+      <artifactId>wsdl4j</artifactId>
+      <groupId>wsdl4j</groupId>
       <version>${wsdl4j.version}</version>
       <scope>compile</scope>
     </dependency>

Modified: portals/wsrp4j/trunk/consumer-proxyportlet/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/consumer-proxyportlet/pom.xml?view=diff&rev=490043&r1=490042&r2=490043
==============================================================================
--- portals/wsrp4j/trunk/consumer-proxyportlet/pom.xml (original)
+++ portals/wsrp4j/trunk/consumer-proxyportlet/pom.xml Sun Dec 24 09:02:31 2006
@@ -71,9 +71,16 @@
       <version>${pom.version}</version>
     </dependency>
     <dependency>
+      <artifactId>wsrp4j-persistence-db</artifactId>
+      <groupId>org.apache.wsrp4j</groupId>
+      <version>${pom.version}</version>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
       <artifactId>wsrp4j-persistence-xml</artifactId>
       <groupId>org.apache.wsrp4j</groupId>
       <version>${pom.version}</version>
+      <scope>runtime</scope>
     </dependency>
     <dependency>
       <artifactId>servlet-api</artifactId>

Modified: portals/wsrp4j/trunk/consumer-swingconsumer/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/consumer-swingconsumer/pom.xml?view=diff&rev=490043&r1=490042&r2=490043
==============================================================================
--- portals/wsrp4j/trunk/consumer-swingconsumer/pom.xml (original)
+++ portals/wsrp4j/trunk/consumer-swingconsumer/pom.xml Sun Dec 24 09:02:31 2006
@@ -96,12 +96,12 @@
     </dependency>    
     <dependency>
       <artifactId>axis-saaj</artifactId>
-      <groupId>axis</groupId>
+      <groupId>org.apache.axis</groupId>
       <version>${axis.version}</version>
     </dependency>
     <dependency>
-      <artifactId>axis-wsdl4j</artifactId>
-      <groupId>axis</groupId>
+      <artifactId>wsdl4j</artifactId>
+      <groupId>wsdl4j</groupId>
       <version>${wsdl4j.version}</version>
     </dependency>
     <dependency>

Modified: portals/wsrp4j/trunk/producer/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/producer/pom.xml?view=diff&rev=490043&r1=490042&r2=490043
==============================================================================
--- portals/wsrp4j/trunk/producer/pom.xml (original)
+++ portals/wsrp4j/trunk/producer/pom.xml Sun Dec 24 09:02:31 2006
@@ -81,16 +81,16 @@
       <version>${pom.version}</version>
     </dependency>
     <dependency>
-      <artifactId>wsrp4j-persistence-xml</artifactId>
+      <artifactId>wsrp4j-persistence-db</artifactId>
       <groupId>org.apache.wsrp4j</groupId>
       <version>${pom.version}</version>
       <scope>runtime</scope>
     </dependency>
     <dependency>
-      <artifactId>wsrp4j-persistence-db</artifactId>
+      <artifactId>wsrp4j-persistence-xml</artifactId>
       <groupId>org.apache.wsrp4j</groupId>
       <version>${pom.version}</version>
-      <!-- Needed for compilation and runtime (servlet filter) -->
+      <scope>runtime</scope>
     </dependency>
     <dependency>
         <artifactId>portlet-api</artifactId>
@@ -106,12 +106,12 @@
     </dependency>
     <dependency>
       <artifactId>axis-saaj</artifactId>
-      <groupId>axis</groupId>
+      <groupId>org.apache.axis</groupId>
       <version>${axis.version}</version>
     </dependency>
     <dependency>
-      <artifactId>axis-wsdl4j</artifactId>
-      <groupId>axis</groupId>
+      <artifactId>wsdl4j</artifactId>
+      <groupId>wsdl4j</groupId>
       <version>${wsdl4j.version}</version>
     </dependency>
     <dependency>
@@ -140,7 +140,7 @@
       <groupId>org.apache.pluto</groupId>
       <version>${pluto.version}</version>
     </dependency>
-        <dependency>
+    <dependency>
       <artifactId>pluto-descriptors</artifactId>
       <groupId>org.apache.pluto</groupId>
       <version>${pluto.version}</version>