Skip to content
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

Fixes #4309 - Add JAXB to Piranha Core Profile #4310

Merged
merged 1 commit into from
Dec 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions extension/coreprofile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<!-- runtime -->
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<distributionManagement>
<site>
Expand Down
12 changes: 6 additions & 6 deletions extension/coreprofile/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@
*/

/**
* This module delivers the meta extension for Jakarta Core Profile.
* This module delivers the extension for Jakarta Core Profile.
*
* <p>
* The following extensions and/or dependencies are delivered as part of this
* meta extension:
* The following extensions and/or dependencies are included:
* </p>
* <ul>
* <li>Annotation Scanning</li>
* <li>Eclipse Parsson (JSON)</li>
* <li>Eclipse Yasson (JSON-B)</li>
* <li>Eclipse Jersey (REST)</li>
* <li>Herring (JNDI)</li>
* <li>Jersey (REST)</li>
* <li>Parsson (JSON)</li>
* <li>ServletContainerInitializer</li>
* <li>web.xml support</li>
* <li>Weld (CDI)</li>
* <li>Yasson (JSON-B)</li>
* </ul>
*/
module cloud.piranha.extension.coreprofile {
Expand Down
Loading