-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a java module version of jsoup-xxx.jar #1943
Comments
Yes, I think it does make sense to make it a module now. Some initial work was done but not completed, in particular as I didn't see a specific benefit vs an automatic module. But if tools are being picky about it being an explicitly defined module, I guess it makes sense. |
@jhy Maven and jlink complain unless |
Thanks all - I have implemented this in #2025. It would be great if folks could test this out and report back with confirmation of success or any issues. Please report back on the PR #2025 (or a new issue if any problems) as there are a few duplicate issues for this. To use a snapshot, |
I am using jsoup in a javafx desktop app project and jsoup is working beautifully (thank you). However, the jsoup-xxx.jar file is not a java module. It is taken as an automatic module while building the project with module-info.java and everything works fine. It breaks when I try to create a runtime image with jlink. I suspect it is because jsoup jar is not a java module. Is it possible to make the library available as a java module?
The text was updated successfully, but these errors were encountered: