I have a Java project which includes the Xerces library.
When I process the project with Proguard, I get the warning:
Note: duplicate definition of library class [org.w3c.dom.html.HTMLDOMImplementation]
I see in Xerces that this class exists, and that a same class exists in the rt.jar of JDK 1.6.
The jar file created by ProGuard does not launch (error: "A Java Exception Has Occurred"). How can I solve this problem? Thx!
(note: I work with Netbeans)