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

Fix #219: relax jakarta.xml.bind OSGI version dependency #222

Merged
merged 2 commits into from
Oct 2, 2023
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
10 changes: 8 additions & 2 deletions jakarta-xmlbind/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,15 @@
<packageVersion.dir>com/fasterxml/jackson/module/jakarta/xmlbind</packageVersion.dir>
<packageVersion.package>${project.groupId}.jakarta.xmlbind</packageVersion.package>
<!-- 22-Mar-2019, tatu: [modules-base#80]: Presence of JAF on the bundle classpath is only necessary
when ser/deser'ing javax.a.DataHandlers
when ser/deser'ing javax.activation.DataHandlers
-->
<osgi.import>javax.activation;resolution:=optional,*</osgi.import>
<!-- 02-Oct-2023, tatu: [modules-base#219]: Need to relax constraints for bind-annotations
-->
<osgi.import>javax.activation;resolution:=optional,
jakarta.xml.bind;version="[3.0,4.0.100)",
jakarta.xml.bind.*;version="[3.0,4.0.100)",
*
</osgi.import>

<version.xmlbind.api>3.0.1</version.xmlbind.api>
</properties>
Expand Down
6 changes: 6 additions & 0 deletions release-notes/CREDITS-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,9 @@ René Scheibe (darxriggs@github)
* Suggested #187: Remove stack trace from Blackbirds warnings wrt missing `MethodHandles.lookup()`
(on Java 8)
(2.14.0)

Marco Descher (@col-panic)

* Contributed fix for #219: (jakarta-xmlbind) Using `jackson-module-jakarta-xmlbind-annotations`
2.15.2 fails in OSGi Environment with JAXB 4
(2.16.0)
3 changes: 3 additions & 0 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ Active maintainers:
(fix by Steven S)
#216: (blackbird, afterburner): Disable in native-image
(fix by Steven S)
#219: (jakarta-xmlbind) Using `jackson-module-jakarta-xmlbind-annotations`
2.15.2 fails in OSGi Environment with JAXB 4
(fix contributed by Marco D)
- Update `asm` version 9.5 -> 9.6

#209: Add guice7 (jakarta.inject) module
Expand Down