aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeterme, Sebastien (sd378r) <sd378r@intl.att.com>2017-08-31 13:43:36 +0200
committerDeterme, Sebastien (sd378r) <sd378r@intl.att.com>2017-08-31 13:44:48 +0200
commitc90581796b5a83f96d06a8d59e56dfc3ec632b08 (patch)
tree47d64b0500a91ef5cb01481ad9bc640cb7161539
parentac3c28f302fbad8af915e05a2c4d9157a15149ba (diff)
Remove Variable in POM
Due to the oparent, it's impossible to keep the variables to define the nexus accesses because Maven needs the parent first to identify default values. So it has been removed Change-Id: Ie81ed776f6d6bd129da9a1701a205d93a6a6780f Issue-Id: CLAMP-43 Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
-rw-r--r--pom.xml20
1 files changed, 7 insertions, 13 deletions
diff --git a/pom.xml b/pom.xml
index a0b50536..c1ec0e2f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -82,28 +82,22 @@
<skip.docker.build>true</skip.docker.build>
<skip.docker.push>true</skip.docker.push>
<skip.staging.artifacts>false</skip.staging.artifacts>
-
- <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/clamp/${project.version}</sitePath>
</properties>
<distributionManagement>
<repository>
<id>ecomp-releases</id>
<name>Clamp Release Repository</name>
- <url>${nexusproxy}/${releaseNexusPath}</url>
+ <url>https://nexus.onap.org/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>ecomp-snapshots</id>
<name>Clamp Snapshot Repository</name>
- <url>${nexusproxy}/${snapshotNexusPath}</url>
+ <url>https://nexus.onap.org/content/repositories/snapshots/</url>
</snapshotRepository>
<site>
<id>ecomp-site</id>
- <url>dav:${nexusproxy}${sitePath}</url>
+ <url>dav:https://nexus.onap.org/content/sites/site/org/onap/clamp/${project.version}</url>
</site>
</distributionManagement>
@@ -116,17 +110,17 @@
<repository>
<id>ecomp-releases</id>
<name>ONAP Release Repository</name>
- <url>${nexusproxy}/${releaseNexusPath}</url>
+ <url>https://nexus.onap.org/content/repositories/releases/</url>
</repository>
<repository>
<id>ecomp-staging</id>
<name>ONAP Staging Repository</name>
- <url>${nexusproxy}/${stagingNexusPath}</url>
+ <url>https://nexus.onap.org/content/repositories/staging/</url>
</repository>
<repository>
<id>ecomp-snapshots</id>
<name>ONAP Snapshot Repository</name>
- <url>${nexusproxy}/${snapshotNexusPath}</url>
+ <url>https://nexus.onap.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
@@ -578,7 +572,7 @@
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
- <nexusUrl>${nexusproxy}</nexusUrl>
+ <nexusUrl>https://nexus.onap.org</nexusUrl>
<stagingProfileId>176c31dfe190a</stagingProfileId>
<serverId>ecomp-staging</serverId>
<skipNexusStagingDeployMojo>${skip.staging.artifacts}</skipNexusStagingDeployMojo>