[jbossws-commits] JBossWS SVN: r17689 - in stack/cxf/trunk: modules/client and 1 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Mon Jun 17 11:50:06 EDT 2013


Author: alessio.soldano at jboss.com
Date: 2013-06-17 11:50:06 -0400 (Mon, 17 Jun 2013)
New Revision: 17689

Modified:
   stack/cxf/trunk/modules/client/pom.xml
   stack/cxf/trunk/modules/resources/src/main/resources/modules/wildfly800/org/apache/cxf/main/module.xml
   stack/cxf/trunk/pom.xml
Log:
[JBWS-3560] Adding FastInfoset dependency to jbossws-cxf-client and fixing cxf api module.xml


Modified: stack/cxf/trunk/modules/client/pom.xml
===================================================================
--- stack/cxf/trunk/modules/client/pom.xml	2013-06-17 12:59:29 UTC (rev 17688)
+++ stack/cxf/trunk/modules/client/pom.xml	2013-06-17 15:50:06 UTC (rev 17689)
@@ -142,6 +142,10 @@
       <artifactId>stax-api</artifactId>
     </dependency>
     <dependency>
+      <groupId>com.sun.xml.fastinfoset</groupId>
+      <artifactId>FastInfoset</artifactId>
+    </dependency>
+    <dependency>
       <groupId>org.apache.santuario</groupId>
       <artifactId>xmlsec</artifactId>
     </dependency>

Modified: stack/cxf/trunk/modules/resources/src/main/resources/modules/wildfly800/org/apache/cxf/main/module.xml
===================================================================
--- stack/cxf/trunk/modules/resources/src/main/resources/modules/wildfly800/org/apache/cxf/main/module.xml	2013-06-17 12:59:29 UTC (rev 17688)
+++ stack/cxf/trunk/modules/resources/src/main/resources/modules/wildfly800/org/apache/cxf/main/module.xml	2013-06-17 15:50:06 UTC (rev 17689)
@@ -42,6 +42,7 @@
         <module name="javax.wsdl4j.api" />
         <module name="javax.xml.bind.api" services="import"/>
         <module name="com.sun.xml.bind" services="import"/>
+        <module name="com.sun.xml.fastinfoset"/>
         <module name="org.apache.neethi" />
         <module name="org.apache.ws.xmlschema" />
         <module name="org.codehaus.woodstox" />

Modified: stack/cxf/trunk/pom.xml
===================================================================
--- stack/cxf/trunk/pom.xml	2013-06-17 12:59:29 UTC (rev 17688)
+++ stack/cxf/trunk/pom.xml	2013-06-17 15:50:06 UTC (rev 17689)
@@ -94,6 +94,7 @@
     <commons.logging.version>1.1.1</commons.logging.version>
     <log4j.version>1.2.16</log4j.version>
     <activation.version>1.1</activation.version>
+    <fastinfoset.version>1.2.12</fastinfoset.version>
     <neethi.version>3.0.2</neethi.version>
     <opensaml.version>2.5.3</opensaml.version>
     <saaj.api.version>1.0.1.Final</saaj.api.version>
@@ -1242,6 +1243,17 @@
         <version>${jms.api.version}</version>
       </dependency>
       <dependency>
+        <groupId>com.sun.xml.fastinfoset</groupId>
+        <artifactId>FastInfoset</artifactId>
+        <version>${fastinfoset.version}</version>
+        <exclusions>
+           <exclusion>
+             <groupId>javax.xml.bind</groupId>
+             <artifactId>jsr173_api</artifactId>
+           </exclusion>
+        </exclusions>
+      </dependency>
+      <dependency>
         <groupId>org.easymock</groupId>
         <artifactId>easymockclassextension</artifactId>
         <version>2.4</version>



More information about the jbossws-commits mailing list