diff options
author | Jimmy Forsyth <jf2512@att.com> | 2018-05-08 19:02:16 -0400 |
---|---|---|
committer | Jimmy Forsyth <jf2512@att.com> | 2018-05-08 19:36:14 -0400 |
commit | 2c66490a68c93cb1ae1d1513cc8bc509cf1d2286 (patch) | |
tree | 9b4aa1b2727fe47dd896b0b38a2541e7157404b9 /sparkybe-onap-application/pom.xml | |
parent | ef8d501c841c5154d1eb47b1849319c29c98c79e (diff) |
Make sparky deploy info match aai-common
Issue-ID: AAI-1127
Change-Id: If82ccd0b34e9abaf0096ef55d307622ef69a2b28
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
Diffstat (limited to 'sparkybe-onap-application/pom.xml')
-rw-r--r-- | sparkybe-onap-application/pom.xml | 79 |
1 files changed, 67 insertions, 12 deletions
diff --git a/sparkybe-onap-application/pom.xml b/sparkybe-onap-application/pom.xml index f091b33..85df4a0 100644 --- a/sparkybe-onap-application/pom.xml +++ b/sparkybe-onap-application/pom.xml @@ -26,6 +26,8 @@ <config-home>${basedir}/</config-home> <docker.location>${basedir}/target</docker.location> <docker.image.name>sparky-be</docker.image.name> + <sitePath>/content/sites/site/org/onap/aai/sparky-be/${project.artifactId}/${project.version}</sitePath> + <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> </properties> <dependencyManagement> @@ -543,25 +545,78 @@ <forceTags>true</forceTags> </configuration> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.8.2</version> + <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>${onap.nexus.url}</nexusUrl> + <stagingProfileId>176c31dfe190a</stagingProfileId> + <serverId>ecomp-staging</serverId> + </configuration> + </plugin> + <!-- license plugin --> <!-- <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>3.0</version> <configuration> <header>LICENSE</header> <includes> <include>src/main/java/**</include> </includes> </configuration> <executions> <execution> <goals> <goal>format</goal> </goals> <phase>process-sources</phase> </execution> </executions> </plugin> --> + </plugins> </build> - <distributionManagement> - <repository> - <id>ecomp-releases</id> - <name>ECOMP Release Repository</name> - <url>${nexusproxy}/content/repositories/releases/</url> - </repository> - <snapshotRepository> - <id>ecomp-snapshots</id> - <name>ECOMP Snapshot Repository</name> - <url>${nexusproxy}/content/repositories/snapshots/</url> - </snapshotRepository> - </distributionManagement> + + <distributionManagement> + <repository> + <id>ecomp-releases</id> + <name>ECOMP Release Repository</name> + <url>${onap.nexus.url}/content/repositories/releases/</url> + </repository> + <snapshotRepository> + <id>ecomp-snapshots</id> + <name>ECOMP Snapshot Repository</name> + <url>${onap.nexus.url}/content/repositories/snapshots/</url> + </snapshotRepository> + <site> + <id>ecomp-site</id> + <url>dav:${onap.nexus.url}${sitePath}</url> + </site> + </distributionManagement> + + <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>${onap.nexus.url}/content/repositories/releases/</url> + </repository> + <repository> + <id>ecomp-staging</id> + <name>ECOMP Staging Repository</name> + <url>${onap.nexus.url}/content/repositories/staging/</url> + </repository> + <repository> + <id>ecomp-snapshots</id> + <name>ECOMP Snapshot Repository</name> + <url>${onap.nexus.url}/content/repositories/snapshots/</url> + </repository> + </repositories> </project> |