In the newer Java (9+) Versions the module system was added and this disallows packages split over modules.
The problem is that the package org.w3c.dom is defined by the module java.xml in the Standard Library and by the dependencies
- xml-apis.jar
- batik-ext.jar
on the Classpath which contribute to the package.
This causes a build error as the package is defined in more than one module: and java.xml
In the newer Java (9+) Versions the module system was added and this disallows packages split over modules.
The problem is that the package
org.w3c.domis defined by the modulejava.xmlin the Standard Library and by the dependencieson the Classpath which contribute to the package.
This causes a build error as the package is defined in more than one module: and
java.xml