Skip to content

Commit

Permalink
"jakarta.xml.bind-api" version is incompatible with Jersey #33
Browse files Browse the repository at this point in the history
  • Loading branch information
andrus committed Nov 26, 2024
1 parent 33f610e commit 91b8cf4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

* #31 commons-lang3 version is incompatible with Liquibase
* #32 commons-io version is incompatible with Liquibase
* #33 "jakarta.xml.bind-api" version is incompatible with Jersey
* #34 Tapestry 5.5 and 5.8 modules bring JUnit 5 to compile scope

## 3.0-M6
Expand Down
8 changes: 8 additions & 0 deletions bootique-tapestry59-jakarta/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
<exclusion>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down Expand Up @@ -113,6 +117,10 @@
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@
<!-- Liquibase uses these -->
<commons.lang3.version>3.17.0</commons.lang3.version>
<commons.io.version>2.17.0</commons.io.version>

<!-- Jersey uses this -->
<xml.bind.version>4.0.2</xml.bind.version>

<!-- Security considerations, 5.8 and 5.9 only -->
<commons.codec.version>1.16.1</commons.codec.version>
</properties>
Expand Down Expand Up @@ -111,6 +115,11 @@
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${xml.bind.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 91b8cf4

Please sign in to comment.