Skip to content

Commit ef24fba

Browse files
authored
Merge pull request #235 from JDUNNIN/2.16
Allow jackson-module-jaxb-annotations to tolerate 2.2,3 in Import-Package
2 parents c224364 + 741b05e commit ef24fba

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

jaxb/pom.xml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,12 @@ for configuring data-binding.
5454
<artifactId>jackson-databind</artifactId>
5555
</dependency>
5656

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

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

0 commit comments

Comments
 (0)