Skip to content

Commit c7a7091

Browse files
committed
[bugfix] Switch from org.apache.ws.commons.util:ws-commons-util:1.0.2 to forked com.evolvedbinary.thirdparty.org.apache.ws.commons.util:ws-commons-util:1.1.0 to fix an issue with prefix mappings
1 parent e57341d commit c7a7091

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

client/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,9 @@
9595
<artifactId>xmlrpc-common</artifactId>
9696
<version>${project.version}</version>
9797
</dependency>
98+
<dependency>
99+
<groupId>com.evolvedbinary.thirdparty.xml-apis</groupId>
100+
<artifactId>xml-apis</artifactId>
101+
</dependency>
98102
</dependencies>
99103
</project>

common/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,11 @@
9090
</build>
9191
<dependencies>
9292
<dependency>
93-
<groupId>org.apache.ws.commons.util</groupId>
93+
<groupId>com.evolvedbinary.thirdparty.xml-apis</groupId>
94+
<artifactId>xml-apis</artifactId>
95+
</dependency>
96+
<dependency>
97+
<groupId>com.evolvedbinary.thirdparty.org.apache.ws.commons.util</groupId>
9498
<artifactId>ws-commons-util</artifactId>
9599
</dependency>
96100
<dependency>

dist/src/main/assembly/bin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<include>org.apache.xmlrpc:*</include>
5050
<include>org.apache.xmlrpc:*</include>
5151
<include>commons-logging:commons-logging</include>
52-
<include>org.apache.ws.commons.util:ws-commons-util</include>
52+
<include>com.evolvedbinary.thirdparty.org.apache.ws.commons.util:ws-commons-util</include>
5353
</includes>
5454
</dependencySet>
5555
</dependencySets>

server/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,10 @@
120120
<version>${project.version}</version>
121121
<scope>test</scope>
122122
</dependency>
123+
<dependency>
124+
<groupId>com.evolvedbinary.thirdparty.xml-apis</groupId>
125+
<artifactId>xml-apis</artifactId>
126+
</dependency>
123127
<dependency>
124128
<groupId>jakarta.servlet</groupId>
125129
<artifactId>jakarta.servlet-api</artifactId>
@@ -129,5 +133,10 @@
129133
<artifactId>junit</artifactId>
130134
<scope>test</scope>
131135
</dependency>
136+
<dependency>
137+
<groupId>com.evolvedbinary.thirdparty.org.apache.ws.commons.util</groupId>
138+
<artifactId>ws-commons-util</artifactId>
139+
<scope>test</scope>
140+
</dependency>
132141
</dependencies>
133142
</project>

0 commit comments

Comments
 (0)