Skip to content

Commit 56f2fee

Browse files
mpreziusogregturn
authored andcommitted
Upgrade to wss4j 2.3.0.
Resolves: #1167
1 parent bc633b7 commit 56f2fee

File tree

2 files changed

+59
-9
lines changed

2 files changed

+59
-9
lines changed

pom.xml

Lines changed: 33 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
<sun-mail.version>1.6.0</sun-mail.version>
117117
<woodstox.version>4.2.0</woodstox.version>
118118
<wsdl4j.version>1.6.3</wsdl4j.version>
119-
<wss4j.version>2.2.3</wss4j.version>
119+
<wss4j.version>2.3.0</wss4j.version>
120120
<xmlsec.version>2.2.0</xmlsec.version>
121121
<xml-schema-core.version>2.2.2</xml-schema-core.version>
122122
<xmlunit1.version>1.6</xmlunit1.version>
@@ -725,7 +725,7 @@
725725
<dependency>
726726
<groupId>com.sun.xml.ws</groupId>
727727
<artifactId>jaxws-ri</artifactId>
728-
<version>2.3.2</version>
728+
<version>2.3.3</version>
729729
<type>pom</type>
730730
<exclusions>
731731
<exclusion>
@@ -748,15 +748,13 @@
748748
<groupId>org.codehaus.woodstox</groupId>
749749
<artifactId>stax2-api</artifactId>
750750
</exclusion>
751+
<exclusion>
752+
<groupId>jakarta.xml.bind</groupId>
753+
<artifactId>jakarta.xml.bind-api</artifactId>
754+
</exclusion>
751755
</exclusions>
752756
</dependency>
753757

754-
<dependency>
755-
<groupId>org.jvnet.staxex</groupId>
756-
<artifactId>stax-ex</artifactId>
757-
<version>${stax.version}</version>
758-
</dependency>
759-
760758
<dependency>
761759
<groupId>com.sun.xml.messaging.saaj</groupId>
762760
<artifactId>saaj-impl</artifactId>
@@ -766,6 +764,14 @@
766764
<groupId>javax.xml.soap</groupId>
767765
<artifactId>javax.xml.soap-api</artifactId>
768766
</exclusion>
767+
<exclusion>
768+
<groupId>jakarta.xml.soap</groupId>
769+
<artifactId>jakarta.xml.soap-api</artifactId>
770+
</exclusion>
771+
<exclusion>
772+
<groupId>org.jvnet.staxex</groupId>
773+
<artifactId>stax-ex</artifactId>
774+
</exclusion>
769775
</exclusions>
770776
</dependency>
771777

@@ -775,10 +781,28 @@
775781
<version>${soap-api.version}</version>
776782
</dependency>
777783

784+
<dependency>
785+
<groupId>org.jvnet.staxex</groupId>
786+
<artifactId>stax-ex</artifactId>
787+
<version>${stax.version}</version>
788+
</dependency>
789+
778790
<dependency>
779791
<groupId>javax.xml.ws</groupId>
780792
<artifactId>jaxws-api</artifactId>
781-
<version>2.3.0</version>
793+
<version>2.3.1</version>
794+
<exclusions>
795+
<exclusion>
796+
<groupId>javax.xml.bind</groupId>
797+
<artifactId>jaxb-api</artifactId>
798+
</exclusion>
799+
</exclusions>
800+
</dependency>
801+
802+
<dependency>
803+
<groupId>jakarta.xml.bind</groupId>
804+
<artifactId>jakarta.xml.bind-api</artifactId>
805+
<version>2.3.2</version>
782806
</dependency>
783807

784808
</dependencies>

spring-ws-security/pom.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,18 @@
129129
<groupId>commons-codec</groupId>
130130
<artifactId>commons-codec</artifactId>
131131
</exclusion>
132+
<exclusion>
133+
<groupId>org.cryptacular</groupId>
134+
<artifactId>cryptacular</artifactId>
135+
</exclusion>
136+
<exclusion>
137+
<groupId>jakarta.xml.bind</groupId>
138+
<artifactId>jakarta.xml.bind-api</artifactId>
139+
</exclusion>
140+
<exclusion>
141+
<groupId>org.glassfish.jaxb</groupId>
142+
<artifactId>jaxb-runtime</artifactId>
143+
</exclusion>
132144
</exclusions>
133145
</dependency>
134146

@@ -151,6 +163,10 @@
151163
<groupId>org.codehaus.woodstox</groupId>
152164
<artifactId>woodstox-core-asl</artifactId>
153165
</exclusion>
166+
<exclusion>
167+
<groupId>jakarta.xml.bind</groupId>
168+
<artifactId>jakarta.xml.bind-api</artifactId>
169+
</exclusion>
154170
</exclusions>
155171
</dependency>
156172

@@ -165,9 +181,19 @@
165181
<groupId>javax.xml.soap</groupId>
166182
<artifactId>javax.xml.soap-api</artifactId>
167183
</exclusion>
184+
<exclusion>
185+
<groupId>org.jvnet.staxex</groupId>
186+
<artifactId>stax-ex</artifactId>
187+
</exclusion>
168188
</exclusions>
169189
</dependency>
170190

191+
<dependency>
192+
<groupId>org.jvnet.staxex</groupId>
193+
<artifactId>stax-ex</artifactId>
194+
<version>${stax.version}</version>
195+
</dependency>
196+
171197
<dependency>
172198
<groupId>javax.xml.soap</groupId>
173199
<artifactId>javax.xml.soap-api</artifactId>

0 commit comments

Comments
 (0)