You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ve...@apache.org on 2009/03/07 02:18:31 UTC

svn commit: r751161 - in /webservices/axis2/branches/java/1_5/modules: clustering/pom.xml jaxws/pom.xml metadata/pom.xml saaj/pom.xml

Author: veithen
Date: Sat Mar  7 01:18:30 2009
New Revision: 751161

URL: http://svn.apache.org/viewvc?rev=751161&view=rev
Log:
Corrected the scope of the transport dependencies in clustering and saaj (test instead of compile) and added them to jaxws and metadata (which implicitly relied on the transport dependencies in clustering or saaj).

Modified:
    webservices/axis2/branches/java/1_5/modules/clustering/pom.xml
    webservices/axis2/branches/java/1_5/modules/jaxws/pom.xml
    webservices/axis2/branches/java/1_5/modules/metadata/pom.xml
    webservices/axis2/branches/java/1_5/modules/saaj/pom.xml

Modified: webservices/axis2/branches/java/1_5/modules/clustering/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_5/modules/clustering/pom.xml?rev=751161&r1=751160&r2=751161&view=diff
==============================================================================
--- webservices/axis2/branches/java/1_5/modules/clustering/pom.xml (original)
+++ webservices/axis2/branches/java/1_5/modules/clustering/pom.xml Sat Mar  7 01:18:30 2009
@@ -41,14 +41,17 @@
         <dependency>
             <groupId>${project.groupId}</groupId>
             <artifactId>axis2-transport-http</artifactId>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>${project.groupId}</groupId>
             <artifactId>axis2-transport-tcp</artifactId>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>${project.groupId}</groupId>
             <artifactId>axis2-transport-local</artifactId>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tomcat</groupId>

Modified: webservices/axis2/branches/java/1_5/modules/jaxws/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_5/modules/jaxws/pom.xml?rev=751161&r1=751160&r2=751161&view=diff
==============================================================================
--- webservices/axis2/branches/java/1_5/modules/jaxws/pom.xml (original)
+++ webservices/axis2/branches/java/1_5/modules/jaxws/pom.xml Sat Mar  7 01:18:30 2009
@@ -87,6 +87,21 @@
                 </exclusion>
             </exclusions>
         </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>axis2-transport-http</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>axis2-transport-tcp</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>axis2-transport-local</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     <build>
         <sourceDirectory>src</sourceDirectory>

Modified: webservices/axis2/branches/java/1_5/modules/metadata/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_5/modules/metadata/pom.xml?rev=751161&r1=751160&r2=751161&view=diff
==============================================================================
--- webservices/axis2/branches/java/1_5/modules/metadata/pom.xml (original)
+++ webservices/axis2/branches/java/1_5/modules/metadata/pom.xml Sat Mar  7 01:18:30 2009
@@ -78,6 +78,21 @@
                 </exclusion>
             </exclusions>
         </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>axis2-transport-http</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>axis2-transport-tcp</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>axis2-transport-local</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     <build>
         <sourceDirectory>src</sourceDirectory>

Modified: webservices/axis2/branches/java/1_5/modules/saaj/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_5/modules/saaj/pom.xml?rev=751161&r1=751160&r2=751161&view=diff
==============================================================================
--- webservices/axis2/branches/java/1_5/modules/saaj/pom.xml (original)
+++ webservices/axis2/branches/java/1_5/modules/saaj/pom.xml Sat Mar  7 01:18:30 2009
@@ -45,14 +45,17 @@
          <dependency>
             <groupId>${project.groupId}</groupId>
             <artifactId>axis2-transport-http</artifactId>
+            <scope>test</scope>
         </dependency>
          <dependency>
             <groupId>${project.groupId}</groupId>
             <artifactId>axis2-transport-tcp</artifactId>
+            <scope>test</scope>
         </dependency>
          <dependency>
             <groupId>${project.groupId}</groupId>
             <artifactId>axis2-transport-local</artifactId>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.axis2</groupId>