Skip to content

Commit 0376def

Browse files
committed
Fixed #464 - Migrate from xml-apis to xerces:xmlParserAPI
1 parent 5ac2513 commit 0376def

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

ReleaseNotes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Release 0.4.0 (NOT RELEASED YET)
44

5+
* [Fixed Issue 464][issue-464]
6+
7+
* Replaced xml-apis with xerces-xmlParserAPI.
8+
59
* [Fixed Issue 309][issue-309]
610

711
* Added possibility to get mode detailed data from Maven Modules from Jobs/Builds
@@ -1156,6 +1160,7 @@ TestReport testReport = mavenJob.getLastSuccessfulBuild().getTestReport();
11561160
[issue-401]: https://github.com/jenkinsci/java-client-api/issues/401
11571161
[issue-402]: https://github.com/jenkinsci/java-client-api/issues/402
11581162
[issue-405]: https://github.com/jenkinsci/java-client-api/issues/405
1163+
[issue-464]: https://github.com/jenkinsci/java-client-api/issues/464
11591164
[pull-123]: https://github.com/jenkinsci/java-client-api/pull/123
11601165
[pull-149]: https://github.com/jenkinsci/java-client-api/pull/149
11611166
[pull-158]: https://github.com/jenkinsci/java-client-api/pull/158

jenkins-client/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,9 @@
109109
<artifactId>assertj-core</artifactId>
110110
<scope>test</scope>
111111
</dependency>
112-
113112
<dependency>
114-
<groupId>xml-apis</groupId>
115-
<artifactId>xml-apis</artifactId>
113+
<groupId>xerces</groupId>
114+
<artifactId>xmlParserAPIs</artifactId>
116115
</dependency>
117116
</dependencies>
118117

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,9 @@
209209
<type>pom</type>
210210
</dependency>
211211
<dependency>
212-
<groupId>xml-apis</groupId>
213-
<artifactId>xml-apis</artifactId>
214-
<version>1.4.01</version>
212+
<groupId>xerces</groupId>
213+
<artifactId>xmlParserAPIs</artifactId>
214+
<version>2.6.1</version>
215215
</dependency>
216216
</dependencies>
217217
</dependencyManagement>

0 commit comments

Comments
 (0)