Move extensions to aai-common
[aai/traversal.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index e83f1f5..34ca304 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
                <groupId>com.att.ajsc</groupId>
                <version>2.1.0</version>
        </parent>
-       <groupId>org.openecomp.aai</groupId>
+       <groupId>org.onap.aai.traversal</groupId>
        <artifactId>traversal</artifactId>
        <version>1.1.0-SNAPSHOT</version>
        <name>traversal</name>
@@ -17,7 +17,7 @@
        </modules>
        <properties>
                <nexusproxy>https://nexus.onap.org</nexusproxy>
-               <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
+               <sitePath>/content/sites/site/org/onap/aai/traversal/${project.artifactId}/${project.version}</sitePath>
                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
                <maven.compiler.target>1.8</maven.compiler.target>
                <maven.compiler.source>1.8</maven.compiler.source>
@@ -25,7 +25,8 @@
                <module.ajsc.namespace.version>v1</module.ajsc.namespace.version>
                <ajscRuntimeVersion>2.1.0</ajscRuntimeVersion>
                <aai-schema.version>1.1.0-SNAPSHOT</aai-schema.version>
-               <aai.project.version>${project.version}</aai.project.version>
+               <aai.project.version>1.1.0</aai.project.version>
+               <aai.docker.version>1.1</aai.docker.version>
 
                <!-- This will be the Absolute Root of the Project and should contain NO 
                        Versioning -->
                <aai-core.version>1.1.0-SNAPSHOT</aai-core.version>
        </properties>
 
+       <repositories>
+               <repository>
+                       <id>maven.restlet.org</id>
+                       <name>maven.restlet.org</name>
+                       <url>http://maven.restlet.org</url>
+               </repository>
+       </repositories>
+
        <distributionManagement>
                <repository>
                        <id>ecomp-releases</id>
                        <url>dav:${nexusproxy}${sitePath}</url>
                </site>
        </distributionManagement>
-
-       <!-- The standard build tasks for this project are inherited from the parent. 
-               Please do not override the build tasks. However tasks and/or profiles can 
-               be included here as well as additional dependencies for your service. Any 
-               runtime or compile scope dependencies will be copied to the INSTALLATION_PATH/extJars 
-               folder and will be made available on the AJSC classpath for your service. 
-               Please, NOTE: DME2 and CSM related dependencies are EXTERNALIZED within the 
-               CSI environment. Therefore, they are provided within this project as "provided" 
-               dependencies. In order for the AJSC to run properly, locally, the CSM and 
-               DME2 dependencies will be copied into the target/commonLibs folder and will 
-               be made available to the classpath of the AJSC through the use of the system 
-               property, "AJSC_EXTERNAL_LIB_FOLDERS". This system property needs to be set 
-               in the "runAjsc" maven profile within the pom.xml (and, is defaulted to do 
-               so). If you have a startup failure related to a missing dme2 class not found 
-               exception, please contact the AJSC team for assistance.--> 
-       <dependencies>
-               <dependency>
-                       <groupId>csi-schemas-source</groupId>
-                       <artifactId>cmn-CommonDataModel</artifactId>
-                       <version>100.0.145</version>
-               </dependency>
-       </dependencies>
        <profiles>
                <profile>
                        <id>jenkins-properties</id>
                                        </dependency>
                                </dependencies>
                        </plugin>
+        <plugin>
+               <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-deploy-plugin</artifactId>
+               <executions>
+                       <execution>
+                       <id>default-deploy</id>
+                       <phase>none</phase>
+                       </execution>
+                       </executions>
+               </plugin>        
+               <plugin>
+                   <groupId>org.sonatype.plugins</groupId>
+                   <artifactId>nexus-staging-maven-plugin</artifactId>
+                   <version>1.6.7</version>
+                   <extensions>true</extensions>
+                   <configuration>
+                       <nexusUrl>${nexusproxy}</nexusUrl>
+                       <stagingProfileId>176c31dfe190a</stagingProfileId>
+                       <serverId>ecomp-staging</serverId>
+                   </configuration>
+               </plugin>
                </plugins>
        </pluginManagement>
                    <plugins>
                         </execution>
                      </executions>
                   </plugin>
+                       <plugin>
+                         <groupId>org.apache.maven.plugins</groupId>
+                         <artifactId>maven-site-plugin</artifactId>
+                         <version>3.6</version>
+                         <dependencies>
+                           <dependency>
+                             <groupId>org.apache.maven.wagon</groupId>
+                             <artifactId>wagon-webdav-jackrabbit</artifactId>
+                             <version>2.10</version>
+                           </dependency>
+                         </dependencies>
+                   </plugin>
               </plugins>
        </build>
+    <reporting>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <version>2.10.4</version>
+          <configuration>
+            <failOnError>false</failOnError>
+            <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
+            <docletArtifact>
+              <groupId>org.umlgraph</groupId>
+              <artifactId>umlgraph</artifactId>
+              <version>5.6</version>
+            </docletArtifact>
+            <additionalparam>-views</additionalparam>
+            <useStandardDocletOptions>true</useStandardDocletOptions>
+          </configuration>
+        </plugin>
+      </plugins>
+    </reporting>
        
 </project>