It seems that I am missing something simple. I am trying to include tagsoup-1.2.jar in my Java 11 project. "Description-module" shows the expected result:
> jar --file=D:/java11/libs/tagsoup-1.2.jar --describe-module No module descriptor found. Derived automatic module. tagsoup@1.2 automatic requires java.base mandated contains org.ccil.cowan.tagsoup contains org.ccil.cowan.tagsoup.jaxp main-class org.ccil.cowan.tagsoup.CommandLine
So I expanded my module-info.java so that it looks like this:
module util { requires java.desktop; requires tagsoup; }
But the eclipse shows the following error: tagoup cannot be resolved for the module
What am I missing? Any help is much appreciated!
Hendrik
source share