Skip to content

Commit

Permalink
Revert "[JBWS-4377]:Remove xerces dependency and use JDK's JAXP impl …
Browse files Browse the repository at this point in the history
…instead"

This reverts commit 543970e.
  • Loading branch information
jbliznak committed Nov 12, 2023
1 parent 249eb28 commit b5b60ce
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/addons/transports/udp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
<groupId>com.fasterxml.woodstox</groupId>
<artifactId>woodstox-core</artifactId>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</dependency>
<!-- END - this should be JDK9 only dependency -->
<dependency>
<groupId>junit</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
<module name="org.jboss.ws.api"/>
<module name="org.jboss.ws.spi"/>
<module name="org.jboss.logging"/>
<module name="org.apache.xerces" services="import"/>
<module name="org.jboss.jaxbintros"/>
</dependencies>
</module>
6 changes: 6 additions & 0 deletions modules/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,12 @@
<artifactId>jakarta.xml.ws-api</artifactId>
</dependency>

<!-- jboss provided -->
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</dependency>

<!-- transitive dependencies -->
<dependency>
<groupId>org.glassfish.jaxb</groupId>
Expand Down
5 changes: 5 additions & 0 deletions modules/testsuite/cxf-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@
<artifactId>woodstox-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
Expand Down
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
<saaj.api.version>1.0.0.Final</saaj.api.version>
<saaj.impl.version>3.0.0</saaj.impl.version>
<velocity.version>2.3</velocity.version>
<xerces.version>2.12.0.SP05</xerces.version>
<xmlsec.version>3.0.2</xmlsec.version>
<wss4j.version>3.0.1</wss4j.version>
<wstx.version>6.4.0</wstx.version>
Expand Down Expand Up @@ -720,6 +721,15 @@
<artifactId>jakarta.servlet-api</artifactId>
<version>${jakarta.servlet-api.version}</version>
</dependency>

<!-- jboss provided -->
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>${xerces.version}</version>
<scope>provided</scope>
</dependency>

<!-- transitive dependencies -->
<dependency>
<groupId>jakarta.activation</groupId>
Expand Down

0 comments on commit b5b60ce

Please sign in to comment.