Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 4 | ONAP Policy Engine |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 5 | ================================================================================ |
| 6 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
| 22 | |
| 23 | <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" |
| 24 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 25 | xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> |
| 26 | |
| 27 | <profiles> |
| 28 | <profile> |
| 29 | <id>policy-profile</id> |
| 30 | <activation> |
| 31 | <activeByDefault>true</activeByDefault> |
| 32 | </activation> |
| 33 | |
| 34 | <repositories> |
| 35 | <repository> |
| 36 | <id>${{snapshotRepositoryID}}</id> |
| 37 | <url>${{snapshotRepositoryURL}}</url> |
| 38 | <releases> |
| 39 | <enabled>false</enabled> |
| 40 | <updatePolicy>always</updatePolicy> |
| 41 | </releases> |
| 42 | <snapshots> |
| 43 | <enabled>true</enabled> |
| 44 | <updatePolicy>always</updatePolicy> |
| 45 | </snapshots> |
| 46 | </repository> |
Tej, Tarun | 37c9c4d | 2017-10-05 16:49:18 -0400 | [diff] [blame] | 47 | <repository> |
| 48 | <id>onap-releases</id> |
| 49 | <name>onap-releases</name> |
| 50 | <url>https://nexus.onap.org/content/repositories/releases/</url> |
| 51 | <releases> |
| 52 | <enabled>true</enabled> |
| 53 | </releases> |
| 54 | <snapshots> |
| 55 | <enabled>false</enabled> |
| 56 | </snapshots> |
| 57 | </repository> |
| 58 | <repository> |
| 59 | <id>onap-staging</id> |
| 60 | <name>onap-staging</name> |
| 61 | <url>https://nexus.onap.org/content/repositories/staging/</url> |
| 62 | <releases> |
| 63 | <enabled>true</enabled> |
| 64 | <updatePolicy>always</updatePolicy> |
| 65 | </releases> |
| 66 | <snapshots> |
| 67 | <enabled>false</enabled> |
| 68 | </snapshots> |
| 69 | </repository> |
| 70 | <repository> |
| 71 | <id>onap-snapshots</id> |
| 72 | <name>onap-snapshots</name> |
| 73 | <url>https://nexus.onap.org/content/repositories/snapshots/</url> |
| 74 | <releases> |
| 75 | <enabled>false</enabled> |
| 76 | </releases> |
| 77 | <snapshots> |
| 78 | <enabled>true</enabled> |
| 79 | <updatePolicy>always</updatePolicy> |
| 80 | </snapshots> |
| 81 | </repository> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 82 | <repository> |
| 83 | <id>${{releaseRepositoryID}}</id> |
| 84 | <url>${{releaseRepositoryURL}}</url> |
| 85 | <releases> |
| 86 | <enabled>true</enabled> |
| 87 | <updatePolicy>always</updatePolicy> |
| 88 | </releases> |
| 89 | <snapshots> |
| 90 | <enabled>false</enabled> |
| 91 | <updatePolicy>always</updatePolicy> |
| 92 | </snapshots> |
| 93 | </repository> |
| 94 | </repositories> |
| 95 | |
| 96 | </profile> |
| 97 | </profiles> |
| 98 | |
| 99 | <activeProfiles> |
| 100 | <activeProfile>policy-profile</activeProfile> |
| 101 | </activeProfiles> |
| 102 | |
| 103 | <servers> |
| 104 | <server> |
| 105 | <id>${{snapshotRepositoryID}}</id> |
| 106 | <username>${{repositoryUsername}}</username> |
| 107 | <password>${{repositoryPassword}}</password> |
| 108 | </server> |
| 109 | <server> |
| 110 | <id>${{releaseRepositoryID}}</id> |
| 111 | <username>${{repositoryUsername}}</username> |
| 112 | <password>${{repositoryPassword}}</password> |
| 113 | </server> |
| 114 | </servers> |
| 115 | |
| 116 | </settings> |