Skip to content

Commit 32e1857

Browse files
committed
Liquibase - exclude "javax.xml.bind:jaxb-api" dependency #138
1 parent ac5b08a commit 32e1857

2 files changed

Lines changed: 3 additions & 16 deletions

File tree

RELEASE-NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## 4.0-M1
22

33
* #137 Remove deprecated modules and APIs
4+
* #138 Liquibase - exclude "javax.xml.bind:jaxb-api" dependency
45

56
## 3.0-RC1
67

bootique-jdbc-liquibase-internal/pom.xml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
under the License.
1919
-->
2020

21-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2223

2324
<modelVersion>4.0.0</modelVersion>
2425
<parent>
@@ -74,17 +75,6 @@
7475
<artifactId>commons-lang3</artifactId>
7576
<version>${commons.lang.version}</version>
7677
</dependency>
77-
<dependency>
78-
<groupId>javax.xml.bind</groupId>
79-
<artifactId>jaxb-api</artifactId>
80-
<version>${jaxb.version}</version>
81-
<exclusions>
82-
<exclusion>
83-
<groupId>javax.activation</groupId>
84-
<artifactId>javax.activation-api</artifactId>
85-
</exclusion>
86-
</exclusions>
87-
</dependency>
8878
<dependency>
8979
<groupId>com.fasterxml.jackson.module</groupId>
9080
<artifactId>jackson-module-jaxb-annotations</artifactId>
@@ -121,10 +111,6 @@
121111
<groupId>org.apache.commons</groupId>
122112
<artifactId>commons-lang3</artifactId>
123113
</dependency>
124-
<dependency>
125-
<groupId>javax.xml.bind</groupId>
126-
<artifactId>jaxb-api</artifactId>
127-
</dependency>
128114
<!-- Need to add this module for the sake of Jakarta environments (where it is superceded by -->
129115
<!-- "jackson-module-jakarta-xmlbind-annotations". This prevent LB 3.x ServiceLoader errors. -->
130116
<dependency>

0 commit comments

Comments
 (0)