Skip to content

Commit

Permalink
Merge pull request #235 from JDUNNIN/2.16
Browse files Browse the repository at this point in the history
Allow jackson-module-jaxb-annotations to tolerate 2.2,3 in Import-Package
  • Loading branch information
cowtowncoder authored May 20, 2024
2 parents c224364 + 741b05e commit ef24fba
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions jaxb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,12 @@ for configuring data-binding.
<artifactId>jackson-databind</artifactId>
</dependency>

<!-- and actual JAXB annotations, types -->
<!-- NOTE! Despite groupId, this is "old" JAXB, not Jakarta
(3.x is real Jakarta one)
-->
<!-- Tolerate [2.2,3) for javax.xml.bind Import-Package in the generated MANIFEST.MF -->
<!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${version.jaxb.impl}</version>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.12</version>
</dependency>

<!-- 14-Mar-2019, tatu: Looks like this is needed for JDK11 and later
Expand Down

0 comments on commit ef24fba

Please sign in to comment.