aai-babel - Java 11 migration
[aai/babel.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index dd30309..4ef4a71 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -34,7 +34,7 @@
 
        <groupId>org.onap.aai</groupId>
        <artifactId>babel</artifactId>
-       <version>1.6.3-SNAPSHOT</version>
+       <version>1.7.0-SNAPSHOT</version>
        <packaging>jar</packaging>
 
        <name>aai-babel</name>
@@ -42,7 +42,7 @@
 
        <properties>
                <!-- Spring boot version -->
-               <spring.boot.version>2.1.6.RELEASE</spring.boot.version>
+               <spring.boot.version>2.1.12.RELEASE</spring.boot.version>
 
                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
                <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -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>
                        <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>