diff options
author | 2019-06-24 09:53:06 +0300 | |
---|---|---|
committer | 2019-06-24 09:53:06 +0300 | |
commit | 3b3fec4b4cb6c1e9240cddd76b9d1f837d6dbd65 (patch) | |
tree | cb3274d6dfcee8a5d47d3f332cabae38315e26ec /epsdk-app-onap | |
parent | 2166f6bfc905879f36dcee120694d29459dcd0a8 (diff) |
Migrate to gerrit-maven-stage (VID)
Cherry picked and squashed from master's commits:
- Migrate to gerrit-maven-stage (VID) (97bec3c4)
- Un-SNAPSHOT all modules while build (e67fc391)
- Remove maven-deploy-plugin (46adb535)
- Normalize slashes in repositories paths (b93b96bc)
- Bump vid-webpack-master for versions-maven-plugin (d97e9d0a)
Issue-ID: CIMAN-234
Change-Id: Ibe838682f7601abbd9a6fb47bf7698afbd3baf9f
Signed-off-by: Ittay Stern <ittay.stern@att.com>
Diffstat (limited to 'epsdk-app-onap')
-rwxr-xr-x | epsdk-app-onap/pom.xml | 30 |
1 files changed, 9 insertions, 21 deletions
diff --git a/epsdk-app-onap/pom.xml b/epsdk-app-onap/pom.xml index 090f7c6d3..af679251c 100755 --- a/epsdk-app-onap/pom.xml +++ b/epsdk-app-onap/pom.xml @@ -16,7 +16,7 @@ <parent> <groupId>org.onap.oparent</groupId> <artifactId>oparent</artifactId> - <version>1.2.3</version> + <version>2.0.0</version> <relativePath/> </parent> @@ -31,10 +31,10 @@ <!-- Skip assembling the zip; assemble via mvn -Dskipassembly=false .. --> <skipassembly>true</skipassembly> <nexusproxy>https://nexus.onap.org</nexusproxy> - <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> - <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> - <stagingNexusPath>/content/repositories/staging/</stagingNexusPath> - <sitePath>/content/sites/site/org/onap/vid/${project.version}</sitePath> + <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath> + <releaseNexusPath>content/repositories/releases/</releaseNexusPath> + <stagingNexusPath>content/repositories/staging/</stagingNexusPath> + <sitePath>content/sites/site/org/onap/vid/${project.version}</sitePath> <!-- SONAR --> <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin> @@ -48,17 +48,17 @@ <repository> <id>ecomp-releases</id> <name>VID Release Repository</name> - <url>${nexusproxy}${releaseNexusPath}</url> + <url>${nexusproxy}/${releaseNexusPath}</url> </repository> <repository> <id>ecomp-snapshots</id> <name>VID Snapshot Repository</name> - <url>${nexusproxy}${snapshotNexusPath}</url> + <url>${nexusproxy}/${snapshotNexusPath}</url> </repository> <repository> <id>ecomp-staging</id> <name>VID Staging Repository</name> - <url>${nexusproxy}${stagingNexusPath}</url> + <url>${nexusproxy}/${stagingNexusPath}</url> </repository> <repository> <!-- Snapshots repository has ECOMP snapshot artifacts --> @@ -81,7 +81,7 @@ <!-- added for javadoc --> <site> <id>ecomp-site</id> - <url>dav:${nexusproxy}${sitePath}</url> + <url>dav:${nexusproxy}/${sitePath}</url> </site> </distributionManagement> @@ -110,18 +110,6 @@ <build> <finalName>vid</finalName> <plugins> - <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> - <!-- Compile to Java 1.8 class output format --> <plugin> <groupId>org.apache.maven.plugins</groupId> |