You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by jk...@apache.org on 2007/10/18 12:20:59 UTC

svn commit: r585915 - in /webservices/axis2/trunk/java/modules: distribution/pom.xml documentation/pom.xml integration/pom.xml kernel/pom.xml parent/pom.xml samples/pom.xml tool/axis2-eclipse-codegen-plugin/pom.xml tool/axis2-idea-plugin/pom.xml

Author: jkaputin
Date: Thu Oct 18 03:20:55 2007
New Revision: 585915

URL: http://svn.apache.org/viewvc?rev=585915&view=rev
Log:
WODEN-67
Changed the Axis2 maven dependencies on Woden
from a single woden snapshot jar to the new 
separate woden-api and woden-impl-dom jar files.

Modified:
    webservices/axis2/trunk/java/modules/distribution/pom.xml
    webservices/axis2/trunk/java/modules/documentation/pom.xml
    webservices/axis2/trunk/java/modules/integration/pom.xml
    webservices/axis2/trunk/java/modules/kernel/pom.xml
    webservices/axis2/trunk/java/modules/parent/pom.xml
    webservices/axis2/trunk/java/modules/samples/pom.xml
    webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/pom.xml
    webservices/axis2/trunk/java/modules/tool/axis2-idea-plugin/pom.xml

Modified: webservices/axis2/trunk/java/modules/distribution/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/distribution/pom.xml?rev=585915&r1=585914&r2=585915&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/distribution/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/distribution/pom.xml Thu Oct 18 03:20:55 2007
@@ -179,9 +179,12 @@
         </dependency>
         <dependency>
             <groupId>org.apache.woden</groupId>
-            <artifactId>woden</artifactId>
+            <artifactId>woden-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.woden</groupId>
+            <artifactId>woden-impl-dom</artifactId>
         </dependency>
-
         <dependency>
             <groupId>xmlbeans</groupId>
             <artifactId>xbean</artifactId>

Modified: webservices/axis2/trunk/java/modules/documentation/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/documentation/pom.xml?rev=585915&r1=585914&r2=585915&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/documentation/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/documentation/pom.xml Thu Oct 18 03:20:55 2007
@@ -176,7 +176,7 @@
         </dependency>
         <dependency>
             <groupId>org.apache.woden</groupId>
-            <artifactId>woden</artifactId>
+            <artifactId>woden-api</artifactId>
         </dependency>
 
         <dependency>

Modified: webservices/axis2/trunk/java/modules/integration/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/integration/pom.xml?rev=585915&r1=585914&r2=585915&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/integration/pom.xml Thu Oct 18 03:20:55 2007
@@ -250,7 +250,11 @@
         </dependency>
         <dependency>
             <groupId>org.apache.woden</groupId>
-            <artifactId>woden</artifactId>
+            <artifactId>woden-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.woden</groupId>
+            <artifactId>woden-impl-dom</artifactId>
         </dependency>
         <dependency>
             <groupId>com.sun.xml.bind</groupId>

Modified: webservices/axis2/trunk/java/modules/kernel/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/pom.xml?rev=585915&r1=585914&r2=585915&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/kernel/pom.xml Thu Oct 18 03:20:55 2007
@@ -72,7 +72,23 @@
 		</dependency>
 		<dependency>
 			<groupId>org.apache.woden</groupId>
-			<artifactId>woden</artifactId>
+			<artifactId>woden-api</artifactId>
+            <version>${woden.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>xerces</groupId>
+                    <artifactId>xercesImpl</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>xml-apis</groupId>
+                    <artifactId>xml-apis</artifactId>
+                </exclusion>
+            </exclusions>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.woden</groupId>
+			<artifactId>woden-impl-dom</artifactId>
+            <version>${woden.version}</version>
             <exclusions>
                 <exclusion>
                     <groupId>xerces</groupId>

Modified: webservices/axis2/trunk/java/modules/parent/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/parent/pom.xml?rev=585915&r1=585914&r2=585915&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/parent/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/parent/pom.xml Thu Oct 18 03:20:55 2007
@@ -736,7 +736,12 @@
             </dependency>
             <dependency>
                 <groupId>org.apache.woden</groupId>
-                <artifactId>woden</artifactId>
+                <artifactId>woden-api</artifactId>
+                <version>${woden.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.woden</groupId>
+                <artifactId>woden-impl-dom</artifactId>
                 <version>${woden.version}</version>
             </dependency>
             <dependency>

Modified: webservices/axis2/trunk/java/modules/samples/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/samples/pom.xml?rev=585915&r1=585914&r2=585915&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/samples/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/samples/pom.xml Thu Oct 18 03:20:55 2007
@@ -72,7 +72,21 @@
 		</dependency>
 		<dependency>
 			<groupId>org.apache.woden</groupId>
-			<artifactId>woden</artifactId>
+			<artifactId>woden-api</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>xerces</groupId>
+                    <artifactId>xercesImpl</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>xml-apis</groupId>
+                    <artifactId>xml-apis</artifactId>
+                </exclusion>
+            </exclusions>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.woden</groupId>
+			<artifactId>woden-impl-dom</artifactId>
             <exclusions>
                 <exclusion>
                     <groupId>xerces</groupId>

Modified: webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/pom.xml?rev=585915&r1=585914&r2=585915&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/pom.xml Thu Oct 18 03:20:55 2007
@@ -216,7 +216,7 @@
 		</dependency>
 		<dependency>
 			<groupId>org.apache.woden</groupId>
-			<artifactId>woden</artifactId>
+			<artifactId>woden-api</artifactId>
 			<version>${woden.version}</version>
 		</dependency>
 
@@ -241,6 +241,10 @@
                         <version>${jibx.version}</version>
                 </dependency>
 
+		<dependency>
+			<groupId>org.apache.woden</groupId>
+			<artifactId>woden-impl-dom</artifactId>
+		</dependency>
 		<dependency>
 			<groupId>log4j</groupId>
 			<artifactId>log4j</artifactId>

Modified: webservices/axis2/trunk/java/modules/tool/axis2-idea-plugin/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/tool/axis2-idea-plugin/pom.xml?rev=585915&r1=585914&r2=585915&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/tool/axis2-idea-plugin/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/tool/axis2-idea-plugin/pom.xml Thu Oct 18 03:20:55 2007
@@ -111,8 +111,12 @@
 		</dependency>		
 		<dependency>
 			<groupId>org.apache.woden</groupId>
-			<artifactId>woden</artifactId>
+			<artifactId>woden-api</artifactId>
 		</dependency>
+        <dependency>
+            <groupId>org.apache.woden</groupId>
+            <artifactId>woden-impl-dom</artifactId>
+        </dependency>
 		<dependency>
 			<groupId>log4j</groupId>
 			<artifactId>log4j</artifactId>



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org