Re: JavaXML.framework and Java 21 (and Eclipse)

2025-05-06 Thread Paul Hoadley via Webobjects-dev
On 6 May 2025, at 19:20, Michael Schmiedgen wrote: > > xerces > xercesImpl > 2.12.2 > > > xml-apis > xml-apis > > > Thanks Michael—this is the bit I was missing! I hadn't noticed that Xerces was still smuggling in xml-apis. Maik Musall gave me the same tip off-list.

Re: JavaXML.framework and Java 21 (and Eclipse)

2025-05-06 Thread Michael Schmiedgen via Webobjects-dev
Hi Paul, we hit this too. JavaXML.framework is a bunch of old Jars bundled together, so we use our own buldled Jar for a long time now. The POM contains following snippet: xml-apis xml-apis 1.4.01 xerces xercesImpl 2.12.2 xml-apis xml-apis At the mom

JavaXML.framework and Java 21 (and Eclipse)

2025-05-05 Thread Paul Hoadley via Webobjects-dev
Hello, I'm porting a project to Java 21. It makes some use of packages in the java.xml module, e.g. org.w3c.dom. When I switch java.version to 21, Eclipse complains:  [In case the image is dropped: The package org.w3c.dom is accessible from more than one module: , java.xml] That's fair enoug