diff options
author | Carsten Lund <lund@research.att.com> | 2017-03-09 21:16:04 +0000 |
---|---|---|
committer | Carsten Lund <lund@research.att.com> | 2017-03-09 21:16:04 +0000 |
commit | a14610df321423e5772b54bbe39e08ee754d9125 (patch) | |
tree | 4edd4049008b0f9942653973b07c76543f36a606 | |
parent | e7bfecbd3840ea7e68993ea89f2ab6d1a65659f0 (diff) |
[DCAE-1] Get demo working with non-SNAPSHOT
Change-Id: I1710ce8b1f42f8d8f1b35512b9a3b83cf03c6597
Signed-off-by: Carsten Lund <lund@research.att.com>
-rw-r--r-- | OPENECOMP-DEMO-RACKSPACE/maven.yaml | 40 |
1 files changed, 24 insertions, 16 deletions
diff --git a/OPENECOMP-DEMO-RACKSPACE/maven.yaml b/OPENECOMP-DEMO-RACKSPACE/maven.yaml index a19df0f..c78bf62 100644 --- a/OPENECOMP-DEMO-RACKSPACE/maven.yaml +++ b/OPENECOMP-DEMO-RACKSPACE/maven.yaml @@ -7,30 +7,38 @@ settings: <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> + <profiles> + <profile> + <id>open-ecomp</id> <activation> <activeByDefault>true</activeByDefault> </activation> + <repositories> - <repository> - <id>osecomp-nexus-snapshots</id> - <name>OSECOMP Snapshot Repository</name> - <url>@{NEXUS-URL-SNAPSHOTS}</url> - </repository> - <repository> - <id>eclipse</id> - <url>https://repo.eclipse.org/content/repositories/releases</url> - <releases> - <enabled>true</enabled> - <updatePolicy>daily</updatePolicy> - </releases> - <snapshots> - <enabled>false</enabled> - </snapshots> - </repository> + + <repository> + <id>snapshots</id> + <name>snapshots</name> + <url>https://nexus.openecomp.org/content/repositories/snapshots/</url> + </repository> + + <repository> + <id>releases</id> + <name>releases</name> + <url>https://nexus.openecomp.org/content/repositories/releases/</url> + </repository> + + <repository> + <id>staging</id> + <name>staging</name> + <url>https://nexus.openecomp.org/content/groups/staging/</url> + </repository> + </repositories> + </profile> </profiles> |