aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris André <chris.andre@yoppworks.com>2020-07-10 11:44:49 -0400
committerChris André <chris.andre@yoppworks.com>2020-07-10 11:44:49 -0400
commit6600175eb4b9fed25b08e0d6a868d78439f7c4b4 (patch)
tree16d5ee9e2549e831b0bad0aa48778a6dea757fb1
parent0c9d39ba25f9c1b6c8b284825dc192fd3d0e4a89 (diff)
aai-babel - Java 11 migration
- added explicit dependencies for JAXB and Javax.activation Issue-ID: AAI-2996 Signed-off-by: Chris Andre <chris.andre@yoppworks.com> Change-Id: Idb4c234bd4f27a8d231b4d784b8435bfa1361944
-rw-r--r--pom.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 665397b..4ef4a71 100644
--- a/pom.xml
+++ b/pom.xml
@@ -85,6 +85,8 @@
<xmlunit.version>1.6</xmlunit.version>
<logback.version>1.2.3</logback.version>
<antrun.version>1.8</antrun.version>
+ <jaxb.version>2.2.11</jaxb.version>
+ <javax.activation.version>1.1.1</javax.activation.version>
<!-- This will be used for the docker images as the default format of maven build has issues -->
<maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
</properties>
@@ -295,6 +297,26 @@
<version>${xmlunit.version}</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>javax.xml.bind</groupId>
+ <artifactId>jaxb-api</artifactId>
+ <version>${jaxb.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.xml.bind</groupId>
+ <artifactId>jaxb-core</artifactId>
+ <version>${jaxb.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.xml.bind</groupId>
+ <artifactId>jaxb-impl</artifactId>
+ <version>${jaxb.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.activation</groupId>
+ <artifactId>activation</artifactId>
+ <version>${javax.activation.version}</version>
+ </dependency>
</dependencies>
<build>