This is an automated email from the ASF dual-hosted git repository.
dkulp pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cxf.git
The following commit(s) were added to refs/heads/main by this push:
new 1f829190e5 Exlude transitive dep to xml-apis to avoid Java17 module
issues
1f829190e5 is described below
commit 1f829190e583560ea4bf72ea0bc67ec277884c5e
Author: Daniel Kulp <[email protected]>
AuthorDate: Wed Aug 30 12:08:58 2023 -0400
Exlude transitive dep to xml-apis to avoid Java17 module issues
---
.../org/apache/cxf/systest/jaxrs/failover/AbstractFailoverTest.java | 2 +-
systests/transports/pom.xml | 6 ++++++
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git
a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/AbstractFailoverTest.java
b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/AbstractFailoverTest.java
index ae0a688a48..1fd0693954 100644
---
a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/AbstractFailoverTest.java
+++
b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/AbstractFailoverTest.java
@@ -43,7 +43,7 @@ import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertNotEquals;;
+import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
diff --git a/systests/transports/pom.xml b/systests/transports/pom.xml
index 71cf873461..00424efc11 100644
--- a/systests/transports/pom.xml
+++ b/systests/transports/pom.xml
@@ -236,6 +236,12 @@
<groupId>net.sourceforge.nekohtml</groupId>
<artifactId>nekohtml</artifactId>
<version>1.9.22</version>
+ <exclusions>
+ <exclusion>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>