summaryrefslogtreecommitdiffstats
path: root/aai-schema
diff options
context:
space:
mode:
authorYoo, Brian (by703c) <by703c@att.com>2021-01-22 13:50:01 -0500
committerHarish Venkata Kajur <vk250x@att.com>2021-02-11 18:41:46 -0500
commita9fee2cb1c991ce478e48ecc749ded2bc55181e2 (patch)
tree8b93f17f185eedefaa06edbd426c992d963f9a39 /aai-schema
parent019da323750e5c0fd2e1a0af181a190ea4dc32e6 (diff)
Add java 11 code support1.8.4
Issue-ID: AAI-3009 Change-Id: Ic65c49e6071f240ec9fe583fa939cc965f928fc9 Signed-off-by: Yoo, Brian (by703c) <by703c@att.com> Signed-off-by: Harish Venkata Kajur <vk250x@att.com>
Diffstat (limited to 'aai-schema')
-rw-r--r--aai-schema/pom.xml19
1 files changed, 12 insertions, 7 deletions
diff --git a/aai-schema/pom.xml b/aai-schema/pom.xml
index e0f5778..12069aa 100644
--- a/aai-schema/pom.xml
+++ b/aai-schema/pom.xml
@@ -36,10 +36,16 @@
<!-- Start of Default ONAP Schema Properties -->
<aai.xsd.source>src/main/resources/onap/aai_schema</aai.xsd.source>
<aai.bindings.source>src/main/xjb/bindings-onap.xjb</aai.bindings.source>
+ <commons.io.version>2.8.0</commons.io.version>
<!-- End of Default ONAP Schema Properties -->
</properties>
<dependencies>
<dependency>
+ <groupId>javax.xml.bind</groupId>
+ <artifactId>jaxb-api</artifactId>
+ <version>2.3.0</version>
+ </dependency>
+ <dependency>
<groupId>org.onap.aai.schema-service</groupId>
<artifactId>aai-annotations</artifactId>
<version>${project.version}</version>
@@ -50,12 +56,6 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>RELEASE</version>
- <scope>test</scope>
- </dependency>
- <dependency>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics</artifactId>
<version>0.11.1</version>
@@ -70,13 +70,18 @@
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
</dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>${commons.io.version}</version>
+ </dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
- <version>2.2</version>
+ <version>2.5.0</version>
<executions>
<execution>
<id>xjc</id>