Revisions made to the Model Loader to use Babel
[aai/model-loader.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index cad4f4e..242b623 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -1,22 +1,24 @@
 <!--
-     ============LICENSE_START=======================================================
-     MODEL LOADER SERVICE
-     ================================================================================
-     Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
-     ================================================================================
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-     
-     http://www.apache.org/licenses/LICENSE-2.0
-     
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
-     ============LICENSE_END=========================================================
-   -->
+  ============LICENSE_START==========================================
+  org.onap.aai
+  ===================================================================
+  Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
+  Copyright © 2017-2018 Amdocs
+  ===================================================================
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+  ============LICENSE_END============================================
+  -->
+
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
@@ -30,7 +32,6 @@
        <groupId>org.onap.aai.model-loader</groupId>
        <artifactId>model-loader</artifactId>
        <version>1.2.0-SNAPSHOT</version>
-       <name>aai-model-loader</name>
 
        <properties>
                <docker.location>${basedir}/target</docker.location>
                <distFilesRoot>/appl/${project.artifactId}/${project.version}</distFilesRoot>
                <runAjscHome>${basedir}/target/swm/package/nix/dist_files${distFilesRoot}</runAjscHome>
 
+        <javax.ws.rs-api.version>2.0.1</javax.ws.rs-api.version>
+               <apache.lang3.version>3.6</apache.lang3.version>
+               <apache.commons-text.version>1.1</apache.commons-text.version>
+               <commons-compress.version>1.14</commons-compress.version>
+               <fasterxml.version>2.8.1</fasterxml.version>
+               <mockito.version>1.10.19</mockito.version>
+               <powermock.version>1.6.2</powermock.version>
+               <jsr311-api.version>1.1.1</jsr311-api.version>
+               <jersey-client.version>1.18</jersey-client.version>
+               <gson.version>2.7</gson.version>
+               <hamcrest-all.version>1.3</hamcrest-all.version>
+        <version.jacoco.maven.plugin>0.7.9</version.jacoco.maven.plugin>
+            
                <!-- Port Selection. A value of 0 will allow for dynamic port selection. 
                        For local testing, you may choose to hardcode this value to something like 
                        8080 -->
-               <serverPort>0</serverPort>
+               <serverPort>9500</serverPort>
                <sslport>0</sslport>
 
 
@@ -66,7 +80,9 @@
                <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
                <sonar.jacoco.reportMissing.force.zero>false</sonar.jacoco.reportMissing.force.zero>
                <sonar.projectVersion>${project.version}</sonar.projectVersion>
-               <nexusproxy>https://nexus.onap.org</nexusproxy>
+               <nexusproxy>https://nexus.openecomp.org</nexusproxy>
+               <babel.version>1.2.0-SNAPSHOT</babel.version>
+               <aai.rest.client.version>1.2.1</aai.rest.client.version>
        </properties>
 
        <distributionManagement>
        </distributionManagement>
        
        <dependencies>
+               <dependency>
+                       <groupId>org.onap.aai</groupId>
+                       <artifactId>babel</artifactId>
+                       <version>${babel.version}</version>
+                       <classifier>client</classifier>
+                       <exclusions>
+                               <exclusion>
+                                       <groupId>*</groupId>
+                                       <artifactId>*</artifactId>
+                               </exclusion>
+                       </exclusions>
+               </dependency>
+               <dependency>
+                       <groupId>javax.ws.rs</groupId>
+                       <artifactId>javax.ws.rs-api</artifactId>
+                       <version>${javax.ws.rs-api.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>javax.ws.rs</groupId>
+                       <artifactId>jsr311-api</artifactId>
+                       <version>${jsr311-api.version}</version>
+               </dependency>
+               <!-- https://mvnrepository.com/artifact/com.sun.jersey/jersey-bundle -->
+               <dependency>
+                       <groupId>com.sun.jersey</groupId>
+                       <artifactId>jersey-client</artifactId>
+                       <version>${jersey-client.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.onap.aai</groupId>
+                       <artifactId>rest-client</artifactId>
+                       <version>${aai.rest.client.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>com.google.code.gson</groupId>
+                       <artifactId>gson</artifactId>
+                       <version>${gson.version}</version>
+               </dependency>
+
+               <!-- Test dependencies -->
+               <dependency>
+                       <groupId>org.hamcrest</groupId>
+                       <artifactId>hamcrest-all</artifactId>
+                       <version>${hamcrest-all.version}</version>
+                       <scope>test</scope>
+               </dependency>
                <dependency>
                        <groupId>org.mockito</groupId>
-                       <artifactId>mockito-all</artifactId>
-                       <version>1.10.19</version>
+                       <artifactId>mockito-core</artifactId>
+                       <version>${mockito.version}</version>
                        <scope>test</scope>
                </dependency>
                <dependency>
                        <groupId>org.powermock</groupId>
                        <artifactId>powermock-module-junit4</artifactId>
-                       <version>1.6.2</version>
+                       <version>${powermock.version}</version>
                        <scope>test</scope>
                </dependency>
                <dependency>
                        <groupId>org.powermock</groupId>
                        <artifactId>powermock-api-mockito</artifactId>
-                       <version>1.6.2</version>
+                       <version>${powermock.version}</version>
                        <scope>test</scope>
                </dependency>
                <dependency>
                                </exclusion>
                        </exclusions>
                </dependency>
+               <dependency>
+                       <groupId>org.javassist</groupId>
+                       <artifactId>javassist</artifactId>
+                       <version>3.19.0-GA</version>
+               </dependency>
+               <dependency>
+                       <groupId>com.fasterxml.jackson.core</groupId>
+                       <artifactId>jackson-core</artifactId>
+                       <version>${fasterxml.version}</version><!--$NO-MVN-MAN-VER$ -->
+               </dependency>
+
                <!-- xjc dependencies -->
                <dependency>
                        <groupId>javax.xml.bind</groupId>
                        <version>2.6.2</version>
                        <scope>compile</scope>
                </dependency>
+               <!-- https://mvnrepository.com/artifact/com.mikesamuel/json-sanitizer -->
                <dependency>
-                       <groupId>com.sun.jersey</groupId>
-                       <artifactId>jersey-client</artifactId>
-                       <version>1.18</version>
+                       <groupId>com.mikesamuel</groupId>
+                       <artifactId>json-sanitizer</artifactId>
+                       <version>1.2.0</version>
                </dependency>
+
                <!-- Common logging framework -->
                <dependency>
                        <groupId>org.onap.aai.logging-service</groupId>
                        <artifactId>common-logging</artifactId>
-                       <version>1.1.0</version>
+                       <version>1.2.2</version>
                </dependency>
                <dependency>
                        <groupId>ch.qos.logback</groupId>
                <dependency>
                        <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
                        <artifactId>sdc-distribution-client</artifactId>
-                       <version>1.1.32</version>
+                       <version>1.2.2</version>
                </dependency>
                <dependency>
                        <groupId>org.apache.httpcomponents</groupId>
                <dependency>
                        <groupId>org.json</groupId>
                        <artifactId>json</artifactId>
-                       <version>20131018</version>
+                       <version>20131018</version><!--$NO-MVN-MAN-VER$ -->
                </dependency>
                <dependency>
                        <groupId>org.eclipse.jetty</groupId>
                <dependency>
                        <groupId>org.springframework</groupId>
                        <artifactId>spring-webmvc</artifactId>
-                       <version>4.0.0.RELEASE</version>
                </dependency>
                <dependency>
                        <groupId>jline</groupId>
                        <artifactId>jline</artifactId>
                        <version>2.12.1</version>
                </dependency>
+               <dependency>
+                       <groupId>org.yaml</groupId>
+                       <artifactId>snakeyaml</artifactId>
+                       <version>1.18</version>
+               </dependency>
+
+               <!-- apache commons -->
+               <dependency>
+                       <groupId>org.apache.commons</groupId>
+                       <artifactId>commons-compress</artifactId>
+                       <version>${commons-compress.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>commons-io</groupId>
+                       <artifactId>commons-io</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.apache.commons</groupId>
+                       <artifactId>commons-lang3</artifactId>
+                       <version>${apache.lang3.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.apache.commons</groupId>
+                       <artifactId>commons-text</artifactId>
+                       <version>${apache.commons-text.version}</version>
+               </dependency>
        </dependencies>
 
        <!-- Plugins and repositories -->
                        <url>http://www.evosuite.org/m2</url>
                </pluginRepository>
        </pluginRepositories>
-       
-       <repositories>
-               <repository>
-                       <id>central</id>
-                       <name>Maven 2 repository 2</name>
-                       <url>http://repo2.maven.org/maven2/</url>
-               </repository>
-               <repository>
-                       <id>ecomp-releases</id>
-                       <name>ECOMP Release Repository</name>
-                       <url>${nexusproxy}/content/repositories/releases/</url>
-               </repository>
-               <repository>
-                       <id>ecomp-snapshots</id>
-                       <name>ECOMP Snapshot Repository</name>
-                       <url>${nexusproxy}/content/repositories/snapshots/</url>
-               </repository>
-               <repository>
-                       <id>ecomp-staging</id>
-                       <name>ECOMP Staging Repository</name>
-                       <url>${nexusproxy}/content/repositories/staging/</url>
-               </repository>
-       </repositories>
 
        <profiles>
                <profile>
                                <configuration>
                                        <verbose>true</verbose>
                                        <serverId>docker-hub</serverId>
-                                       <imageName>${docker.push.registry}/onap/${project.artifactId}</imageName>
+                                       <imageName>${docker.push.registry}/openecomp/${project.artifactId}</imageName>
                                        <dockerDirectory>${docker.location}</dockerDirectory>
                                        <imageTags>
                                                <imageTag>latest</imageTag>
                        </plugin>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-surefire-plugin</artifactId>
-                               <version>2.12.4</version>
-                               <configuration>
-                                       <argLine>-noverify ${argLine}</argLine>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>jaxb2-maven-plugin</artifactId>
-                               <version>2.2</version>
+                               <artifactId>maven-dependency-plugin</artifactId>
+                               <version>2.8</version>
                                <executions>
                                        <execution>
-                                               <id>xjc</id>
+                                               <id>copy-agent</id>
+                                               <phase>process-test-classes</phase>
                                                <goals>
-                                                       <goal>xjc</goal>
+                                                       <goal>copy</goal>
                                                </goals>
+                                               <configuration>
+                                                       <artifactItems>
+                                                               <artifactItem>
+                                                                       <groupId>org.powermock</groupId>
+                                                                       <artifactId>powermock-module-javaagent</artifactId>
+                                                                       <version>1.6.2</version>
+                                                                       <outputDirectory>${project.build.directory}/agents</outputDirectory>
+                                                                       <destFileName>powermock-javaagent.jar</destFileName>
+                                                               </artifactItem>
+                                                       </artifactItems>
+                                               </configuration>
                                        </execution>
                                </executions>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-surefire-plugin</artifactId>
+                               <version>2.12.4</version><!--$NO-MVN-MAN-VER$ -->
                                <configuration>
-                                       <clearOutputDir>false</clearOutputDir>
-                                       <outputDirectory>${project.build.directory}/generated-sources</outputDirectory>
-                                       <sources>
-                                               <source>${project.basedir}/src/main/resources/schema</source>
-                                       </sources>
-                                       <addGeneratedAnnotation>true</addGeneratedAnnotation>
+                                       <argLine>-noverify ${argLine}</argLine>
                                </configuration>
                        </plugin>
                        <plugin>
                                <artifactId>sonar-maven-plugin</artifactId>
                                <version>3.2</version>
                        </plugin>
-                       <plugin>
-                               <groupId>org.jacoco</groupId>
-                               <artifactId>jacoco-maven-plugin</artifactId>
-                               <version>0.7.7.201606060606</version>
-                               <configuration>
-                                       <dumpOnExit>true</dumpOnExit>
-                               </configuration>
-                               <executions>
-                                       <execution>
-                                               <id>jacoco-initialize-unit-tests</id>
-                                               <goals>
-                                                       <goal>prepare-agent</goal>
-                                               </goals>
-                                               <configuration>
-                                                       <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
-                                                       <!-- <append>true</append> -->
-                                               </configuration>
-                                       </execution>
-                               </executions>
-                       </plugin>
+            <plugin>
+                <groupId>org.jacoco</groupId>
+                <artifactId>jacoco-maven-plugin</artifactId>
+                <version>${version.jacoco.maven.plugin}</version>
+                <executions>
+                       <execution>
+                           <id>jacoco-initialize-unit-tests</id>
+                           <goals>
+                               <goal>prepare-agent</goal>
+                           </goals>
+                       </execution>
+                       <execution> 
+                           <id>report</id>
+                           <phase>package</phase>
+                           <goals>
+                               <goal>report</goal>
+                           </goals>
+                       </execution>
+                </executions>
+            </plugin>
                        <plugin>
                                <groupId>org.sonatype.plugins</groupId>
                                <artifactId>nexus-staging-maven-plugin</artifactId>
 
                </plugins>
        </build>
-
 </project>