From 072761a0adf965ba8d1ce3d0db44bb1aea838408 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Tue, 15 Oct 2024 12:43:09 +0200 Subject: [PATCH] [xmlparser-xpp3] Switch to codelibs version of xpp3 This version has javax.xml.namespace.QName removed, avoiding the duplicate declaration conflict with QName from Java 11. --- smack-xmlparser-xpp3/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smack-xmlparser-xpp3/build.gradle b/smack-xmlparser-xpp3/build.gradle index 8c5063117..5418728df 100644 --- a/smack-xmlparser-xpp3/build.gradle +++ b/smack-xmlparser-xpp3/build.gradle @@ -12,7 +12,7 @@ ext { dependencies { api "xpp3:xpp3_min:$xpp3Version" - implementation "xpp3:xpp3:$xpp3Version" + implementation "org.codelibs:xpp3:${xpp3Version}.0" api project(':smack-xmlparser') //testCompile project(path: ":smack-xmlparser", configuration: "testRuntime") }