aai-babel - Java 11 migration 80/110080/1
authorChris André <chris.andre@yoppworks.com>
Fri, 10 Jul 2020 15:44:49 +0000 (11:44 -0400)
committerChris André <chris.andre@yoppworks.com>
Fri, 10 Jul 2020 15:44:49 +0000 (11:44 -0400)
- added explicit dependencies for JAXB and Javax.activation

Issue-ID: AAI-2996
Signed-off-by: Chris Andre <chris.andre@yoppworks.com>
Change-Id: Idb4c234bd4f27a8d231b4d784b8435bfa1361944

pom.xml

diff --git a/pom.xml b/pom.xml
index 665397b..4ef4a71 100644 (file)
--- 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>
                <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>
         <!-- 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>
                        <version>${xmlunit.version}</version>
                        <scope>test</scope>
                </dependency>
                        <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>
        </dependencies>
 
        <build>