-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Repackaged the library with native (vs automatic) JPMS module support (…
…#2025) Repackaged the library with native (vs automatic) JPMS module support Fixes #1943 Fixes #1466 Min builder is JDK 9 #2026 tracks adding a test action (not compile) for JDK 8.
- Loading branch information
Showing
4 changed files
with
42 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
module org.jsoup { | ||
exports org.jsoup; | ||
exports org.jsoup.helper; | ||
exports org.jsoup.nodes; | ||
exports org.jsoup.parser; | ||
exports org.jsoup.safety; | ||
exports org.jsoup.select; | ||
|
||
requires transitive java.xml; // for org.w3c.dom out of W3CDom | ||
} |