-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add module-info to the api artifacts, update to Java SE 11 (#565)
* Correct the readme url in 2021-10-25-pages-here.md * Update the root readme * Update asciidoc plugin and config for #558 * Add explicit asciidoctorj version and dependency, update sourceDirectory and imagesdir * Change to canAccess to avoid isAccessible deprecation * Add module infos to api artifacts Signed-off-by: starksm64 <starksm64@gmail.com>
- Loading branch information
Showing
7 changed files
with
71 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
module jakarta.cdi { | ||
exports jakarta.decorator; | ||
exports jakarta.enterprise.context; | ||
exports jakarta.enterprise.context.control; | ||
exports jakarta.enterprise.context.spi; | ||
exports jakarta.enterprise.event; | ||
exports jakarta.enterprise.inject; | ||
exports jakarta.enterprise.inject.build.compatible.spi; | ||
exports jakarta.enterprise.inject.literal; | ||
exports jakarta.enterprise.inject.se; | ||
exports jakarta.enterprise.inject.spi; | ||
exports jakarta.enterprise.inject.spi.configurator; | ||
exports jakarta.enterprise.util; | ||
|
||
requires transitive jakarta.annotation; | ||
requires transitive jakarta.interceptor; | ||
requires transitive jakarta.cdi.lang.model; | ||
requires transitive jakarta.inject; | ||
requires static jakarta.el; | ||
// For javadoc | ||
requires static java.naming; | ||
//TODO: requires static jakarta.transation; | ||
|
||
uses jakarta.enterprise.inject.se.SeContainerInitializer; | ||
uses jakarta.enterprise.inject.spi.CDIProvider; | ||
uses jakarta.enterprise.inject.build.compatible.spi.BuildServices; | ||
} |
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,5 @@ | ||
module jakarta.cdi.lang.model { | ||
exports jakarta.enterprise.lang.model; | ||
exports jakarta.enterprise.lang.model.declarations; | ||
exports jakarta.enterprise.lang.model.types; | ||
} |