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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]