Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed May 20, 2024
1 parent f9cbc3e commit a7c1756
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions jaxb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@
-->
<osgi.import>javax.activation;resolution:=optional,*</osgi.import>

<!-- 20-May-2024, tatu: no longer needed it seems:
<version.jaxb.impl>2.3.3</version.jaxb.impl>
-->
</properties>
<dependencies>
<!-- Extends Jackson core and mapper; minor dep on annotations too (JsonInclude) -->
Expand All @@ -54,14 +56,13 @@
<artifactId>jackson-databind</artifactId>
</dependency>

<!-- and actual JAXB annotations... -->
<!-- NOTE! Despite groupId, this is "old" JAXB, not Jakarta
(3.x is real Jakarta one)
-->
<!-- 20-May-2024: [modules-base#233]: 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>
<!-- 05-May-2019, tatu: As per #111, looks like we actually need this
flavor of activation API...
Expand All @@ -73,12 +74,14 @@
</dependency>

<!-- may also need JAXB impl for tests -->
<!-- 20-May-2024, tatu: no longer needed it seems:
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${version.jaxb.impl}</version>
<scope>test</scope>
</dependency>
-->
</dependencies>

<build>
Expand Down

0 comments on commit a7c1756

Please sign in to comment.