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/05/09 13:50:40 UTC

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

Author: dlouzan
Date: Tue May  9 04:50:38 2006
New Revision: 405396

URL: http://svn.apache.org/viewcvs?rev=405396&view=rev
Log:
Dependency update and misc mods.

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-swingconsumer/pom.xml
    portals/wsrp4j/trunk/consumer/pom.xml
    portals/wsrp4j/trunk/persistence-xml/pom.xml
    portals/wsrp4j/trunk/pom.xml
    portals/wsrp4j/trunk/producer/pom.xml

Modified: portals/wsrp4j/trunk/commons-consumer/pom.xml
URL: http://svn.apache.org/viewcvs/portals/wsrp4j/trunk/commons-consumer/pom.xml?rev=405396&r1=405395&r2=405396&view=diff
==============================================================================
--- portals/wsrp4j/trunk/commons-consumer/pom.xml (original)
+++ portals/wsrp4j/trunk/commons-consumer/pom.xml Tue May  9 04:50:38 2006
@@ -39,7 +39,7 @@
     <dependency>
       <artifactId>wsrp4j-commons</artifactId>
       <groupId>org.apache.wsrp4j</groupId>
-      <version>0.4-SNAPSHOT</version>
+      <version>${pom.version}</version>
     </dependency>
     <dependency>
       <artifactId>portlet-api</artifactId>

Modified: portals/wsrp4j/trunk/commons-producer/pom.xml
URL: http://svn.apache.org/viewcvs/portals/wsrp4j/trunk/commons-producer/pom.xml?rev=405396&r1=405395&r2=405396&view=diff
==============================================================================
--- portals/wsrp4j/trunk/commons-producer/pom.xml (original)
+++ portals/wsrp4j/trunk/commons-producer/pom.xml Tue May  9 04:50:38 2006
@@ -39,11 +39,11 @@
     <dependency>
       <artifactId>wsrp4j-commons</artifactId>
       <groupId>org.apache.wsrp4j</groupId>
-      <version>0.4-SNAPSHOT</version>
+      <version>${pom.version}</version>
     </dependency>
     <dependency>
-      <artifactId>servletapi</artifactId>
-      <groupId>servletapi</groupId>
+      <artifactId>servlet-api</artifactId>
+      <groupId>javax.servlet</groupId>
       <version>${servlet-api.version}</version>
     </dependency>
     <dependency>

Modified: portals/wsrp4j/trunk/commons/pom.xml
URL: http://svn.apache.org/viewcvs/portals/wsrp4j/trunk/commons/pom.xml?rev=405396&r1=405395&r2=405396&view=diff
==============================================================================
--- portals/wsrp4j/trunk/commons/pom.xml (original)
+++ portals/wsrp4j/trunk/commons/pom.xml Tue May  9 04:50:38 2006
@@ -37,17 +37,17 @@
   </build>
   <dependencies>
     <dependency>
+      <artifactId>axis</artifactId>
+      <groupId>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</artifactId>
-      <groupId>axis</groupId>
-      <version>${axis.version}</version>
-    </dependency>
-    <dependency>
       <artifactId>axis-jaxrpc</artifactId>
       <groupId>axis</groupId>
       <version>${axis.version}</version>
@@ -58,20 +58,20 @@
       <version>${log4j.version}</version>
     </dependency>
     <dependency>
+      <artifactId>junit</artifactId>
+      <groupId>junit</groupId>
+      <version>${junit.version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
       <artifactId>commons-lang</artifactId>
       <groupId>commons-lang</groupId>
       <version>${commons-lang.version}</version>
     </dependency>
-    <dependency>
+    <!--dependency>
       <groupId>xml-apis</groupId>
       <artifactId>xml-apis</artifactId>
       <version>${xml-apis.version}</version>
-    </dependency>
-    <dependency>
-      <artifactId>junit</artifactId>
-      <groupId>junit</groupId>
-      <version>${junit.version}</version>
-      <scope>provided</scope>
-    </dependency>
+    </dependency-->
   </dependencies>
 </project>

Modified: portals/wsrp4j/trunk/consumer-swingconsumer/pom.xml
URL: http://svn.apache.org/viewcvs/portals/wsrp4j/trunk/consumer-swingconsumer/pom.xml?rev=405396&r1=405395&r2=405396&view=diff
==============================================================================
--- portals/wsrp4j/trunk/consumer-swingconsumer/pom.xml (original)
+++ portals/wsrp4j/trunk/consumer-swingconsumer/pom.xml Tue May  9 04:50:38 2006
@@ -37,14 +37,19 @@
   </build>
   <dependencies>
     <dependency>
+        <artifactId>wsrp4j-commons</artifactId>
+        <groupId>org.apache.wsrp4j</groupId>
+        <version>${pom.version}</version>
+    </dependency>
+    <dependency>
       <artifactId>wsrp4j-commons-consumer</artifactId>
       <groupId>org.apache.wsrp4j</groupId>
-      <version>0.4-SNAPSHOT</version>
+      <version>${pom.version}</version>
     </dependency>
     <dependency>
       <artifactId>wsrp4j-persistence-xml</artifactId>
       <groupId>org.apache.wsrp4j</groupId>
-      <version>0.4-SNAPSHOT</version>
+      <version>${pom.version}</version>
     </dependency>
     <dependency>
       <artifactId>axis-saaj</artifactId>

Modified: portals/wsrp4j/trunk/consumer/pom.xml
URL: http://svn.apache.org/viewcvs/portals/wsrp4j/trunk/consumer/pom.xml?rev=405396&r1=405395&r2=405396&view=diff
==============================================================================
--- portals/wsrp4j/trunk/consumer/pom.xml (original)
+++ portals/wsrp4j/trunk/consumer/pom.xml Tue May  9 04:50:38 2006
@@ -34,21 +34,34 @@
   </description>
   <build>
     <sourceDirectory>src/java</sourceDirectory>
+    <plugins>
+      <plugin>
+        <artifactId>maven-war-plugin</artifactId>
+        <configuration>
+        <warSourceDirectory>src/webapp</warSourceDirectory>
+        </configuration>
+      </plugin>
+    </plugins>
   </build>
   <dependencies>
     <dependency>
       <artifactId>wsrp4j-commons-consumer</artifactId>
       <groupId>org.apache.wsrp4j</groupId>
-      <version>0.4-SNAPSHOT</version>
+      <version>${pom.version}</version>
     </dependency>
     <dependency>
       <artifactId>wsrp4j-persistence-xml</artifactId>
       <groupId>org.apache.wsrp4j</groupId>
-      <version>0.4-SNAPSHOT</version>
+      <version>${pom.version}</version>
     </dependency>
     <dependency>
-      <artifactId>servletapi</artifactId>
-      <groupId>servletapi</groupId>
+        <artifactId>portlet-api</artifactId>
+        <groupId>portlet-api</groupId>
+        <version>${portlet-api.version}</version>
+    </dependency>
+    <dependency>
+      <artifactId>servlet-api</artifactId>
+      <groupId>javax.servlet</groupId>
       <version>${servlet-api.version}</version>
     </dependency>
     <dependency>

Modified: portals/wsrp4j/trunk/persistence-xml/pom.xml
URL: http://svn.apache.org/viewcvs/portals/wsrp4j/trunk/persistence-xml/pom.xml?rev=405396&r1=405395&r2=405396&view=diff
==============================================================================
--- portals/wsrp4j/trunk/persistence-xml/pom.xml (original)
+++ portals/wsrp4j/trunk/persistence-xml/pom.xml Tue May  9 04:50:38 2006
@@ -39,12 +39,12 @@
     <dependency>
       <artifactId>wsrp4j-commons-consumer</artifactId>
       <groupId>org.apache.wsrp4j</groupId>
-      <version>0.4-SNAPSHOT</version>
+      <version>${pom.version}</version>
     </dependency>
     <dependency>
       <artifactId>wsrp4j-commons-producer</artifactId>
       <groupId>org.apache.wsrp4j</groupId>
-      <version>0.4-SNAPSHOT</version>
+      <version>${pom.version}</version>
     </dependency>
     <dependency>
       <artifactId>castor</artifactId>

Modified: portals/wsrp4j/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/portals/wsrp4j/trunk/pom.xml?rev=405396&r1=405395&r2=405396&view=diff
==============================================================================
--- portals/wsrp4j/trunk/pom.xml (original)
+++ portals/wsrp4j/trunk/pom.xml Tue May  9 04:50:38 2006
@@ -197,7 +197,7 @@
     <servlet-api.version>2.3</servlet-api.version>
     <wsdl4j.version>1.5.1</wsdl4j.version>
     <xerces.version>2.7.1</xerces.version>
-    <xml-apis.version>2.0.2</xml-apis.version>
+    <xml-apis.version>1.0.b2</xml-apis.version>
   </properties>
   <modules>
     <module>commons</module>

Modified: portals/wsrp4j/trunk/producer/pom.xml
URL: http://svn.apache.org/viewcvs/portals/wsrp4j/trunk/producer/pom.xml?rev=405396&r1=405395&r2=405396&view=diff
==============================================================================
--- portals/wsrp4j/trunk/producer/pom.xml (original)
+++ portals/wsrp4j/trunk/producer/pom.xml Tue May  9 04:50:38 2006
@@ -55,6 +55,11 @@
       <version>0.4-SNAPSHOT</version>
     </dependency>
     <dependency>
+        <artifactId>portlet-api</artifactId>
+        <groupId>portlet-api</groupId>
+        <version>${portlet-api.version}</version>
+    </dependency>
+    <dependency>
       <artifactId>axis-saaj</artifactId>
       <groupId>axis</groupId>
       <version>${axis.version}</version>