Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-dev] Issues resolving dependencies

TL;DR: your dependencies are not OK for Java 11 module hell.
 
See classic answer from Stephan: https://stackoverflow.com/a/53824670
and a shorter version from Holger: https://stackoverflow.com/a/55572922
 
Kind regards,
Andrey Loskutov

Спасение утопающих - дело рук самих утопающих

https://www.eclipse.org/user/aloskutov
 
 
Gesendet: Freitag, 16. April 2021 um 18:45 Uhr
Von: "Wim Jongman" <wim.jongman@xxxxxxxxx>
An: "Eclipse platform general developers list." <platform-dev@xxxxxxxxxxx>
Betreff: [platform-dev] Issues resolving dependencies
Hi,
 
I can't find a solution for a build problem. It would be great if someone could point me in the right direction. Google just sends me through a rabbit hole.
 
I am using package org.w3c.dom.css in a java class. It's bundle has a package dependency on org.w3c.dom.css but Eclipse complains about the import:
 
"The package org.w3c.dom.css is accessible from more than one module: <unnamed>, jdk.xml.dom"
 
When I remove the org.w3c.dom.css package dependency then Eclipse is happy but Tycho/Maven fails to build.
 
image.png
 
Thanks, Wim
 
 
 
_______________________________________________ platform-dev mailing list platform-dev@xxxxxxxxxxx To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/platform-dev

Back to the top