You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2012/12/02 17:58:35 UTC

svn commit: r1416200 - in /webservices/commons/trunk/modules/axiom: modules/axiom-all/pom.xml modules/axiom-jaxb/pom.xml src/main/assembly/bin.xml

Author: veithen
Date: Sun Dec  2 16:58:34 2012
New Revision: 1416200

URL: http://svn.apache.org/viewvc?rev=1416200&view=rev
Log:
Fixed binary release content.

Modified:
    webservices/commons/trunk/modules/axiom/modules/axiom-all/pom.xml
    webservices/commons/trunk/modules/axiom/modules/axiom-jaxb/pom.xml
    webservices/commons/trunk/modules/axiom/src/main/assembly/bin.xml

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-all/pom.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-all/pom.xml?rev=1416200&r1=1416199&r2=1416200&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-all/pom.xml (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-all/pom.xml Sun Dec  2 16:58:34 2012
@@ -60,6 +60,11 @@
         </dependency>
         <dependency>
             <groupId>${project.groupId}</groupId>
+            <artifactId>axiom-jaxb</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
             <artifactId>axiom-c14n</artifactId>
             <version>${project.version}</version>
         </dependency>

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-jaxb/pom.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-jaxb/pom.xml?rev=1416200&r1=1416199&r2=1416200&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-jaxb/pom.xml (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-jaxb/pom.xml Sun Dec  2 16:58:34 2012
@@ -50,6 +50,7 @@
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>com.sun.xml.bind</groupId>

Modified: webservices/commons/trunk/modules/axiom/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/src/main/assembly/bin.xml?rev=1416200&r1=1416199&r2=1416200&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/src/main/assembly/bin.xml (original)
+++ webservices/commons/trunk/modules/axiom/src/main/assembly/bin.xml Sun Dec  2 16:58:34 2012
@@ -77,6 +77,8 @@
                 <include>org.apache.ws.commons.axiom:axiom-api</include>
                 <include>org.apache.ws.commons.axiom:axiom-impl</include>
                 <include>org.apache.ws.commons.axiom:axiom-dom</include>
+                <include>org.apache.ws.commons.axiom:axiom-compat</include>
+                <include>org.apache.ws.commons.axiom:axiom-jaxb</include>
                 <include>org.apache.ws.commons.axiom:axiom-c14n</include>
             </includes>
             <binaries>
@@ -86,6 +88,12 @@
                 <dependencySets>
                     <dependencySet>
                         <outputDirectory>lib</outputDirectory>
+                        <excludes>
+                            <!-- This artifact is actually shaded into axiom-impl and axiom-dom -->
+                            <exclude>org.apache.ws.commons.axiom:axiom-common-impl</exclude>
+                            <!-- This dependency should be considered as provided by the application code -->
+                            <exclude>javax.xml.bind:jaxb-api</exclude>
+                        </excludes>
                     </dependencySet>
                 </dependencySets>
             </binaries>