diff options
Diffstat (limited to 'aai-schema/pom.xml')
-rw-r--r-- | aai-schema/pom.xml | 19 |
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> |