diff options
-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> |