[
https://jira.jboss.org/jira/browse/JBWS-2334?page=com.atlassian.jira.plug...
]
Alessio Soldano commented on JBWS-2334:
---------------------------------------
This can be done excluding sjsxp from the dependencies in the main pom.xml. However
sjsxp.jar is still required in the deployed artifacts, so this can be done moving the
dependency to the server modules only.
[alessio@localhost trunk]$ svn diff
Index: src/main/scripts/assembly-deploy-artifacts.xml
===================================================================
--- src/main/scripts/assembly-deploy-artifacts.xml (revisione 8316)
+++ src/main/scripts/assembly-deploy-artifacts.xml (copia locale)
@@ -11,6 +11,16 @@
<moduleSet>
<includes>
<include>org.jboss.ws.metro:jbossws-metro-client</include>
+ </includes>
+ <binaries>
+ <outputDirectory>lib</outputDirectory>
+
<outputFileNameMapping>${module.artifactId}.${module.extension}</outputFileNameMapping>
+ <unpack>false</unpack>
+ </binaries>
+ </moduleSet>
+ <moduleSet>
+ <includes>
+ <!-- <include>org.jboss.ws.metro:jbossws-metro-client</include>
-->
<include>org.jboss.ws.metro:jbossws-metro-server</include>
</includes>
<binaries>
Index: modules/server/pom.xml
===================================================================
--- modules/server/pom.xml (revisione 8316)
+++ modules/server/pom.xml (copia locale)
@@ -58,6 +58,10 @@
<artifactId>FastInfoset</artifactId>
</dependency>
<dependency>
+ <groupId>com.sun.xml.stream</groupId>
+ <artifactId>sjsxp</artifactId>
+ </dependency>
+ <dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>http</artifactId>
</dependency>
Index: pom.xml
===================================================================
--- pom.xml (revisione 8316)
+++ pom.xml (copia locale)
@@ -211,6 +211,12 @@
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-rt</artifactId>
<version>${sun.jaxws.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>com.sun.xml.stream</groupId>
+ <artifactId>sjsxp</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>com.sun.xml.ws</groupId>
Use Woodstox on client side when running tests
----------------------------------------------
Key: JBWS-2334
URL:
https://jira.jboss.org/jira/browse/JBWS-2334
Project: JBoss Web Services
Issue Type: Feature Request
Security Level: Public(Everyone can see)
Components: jbossws-metro
Reporter: Alessio Soldano
Assignee: Alessio Soldano
Since AS5 uses woodstox as default StAX implementation, we should evaluate actually using
it as StAX implementation on client side when running tests.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira