You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I am afraid this can't be solved with the plugin right now.
As you have a conflict with a Module in the JDK itself – jdk.xml.dom – you can't use the mergeJar functionality, as you cannot modify a Module of the JDK itself.
Looks like it was fixed months ago, but never released. 😞
We could think about adding a new functionality to this plugin that allows you to completely remove a package from a Jar. As we already do filtering of Jar entries and allow to ignore service providers:
We could add something similar to remove a package:
extraJavaModuleInfo {
module("xerces:xercesImpl", "xerces.impl)") {
removePackage("org.w3c.dom.html") // THIS IS A MOCKUP, we do not have this yet
}
}
I am would be open for contributions.
jjohannes
changed the title
xercesImpl
[Maybe] Add removePackage feature to deal with split-packages in JDK Modules (for example xerces:xercesImpl)
Sep 21, 2024
Hello, I tried your plugin and there was a problem with this library
implementation 'xerces:xercesImpl:2.12.2'
which contains the package org.w3c.dom, which is part of jdk.xml.dom. how to solve it in this case? Thanks
The text was updated successfully, but these errors were encountered: