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> |
| 47 | |
| 48 | <repository> |
| 49 | <id>${{releaseRepositoryID}}</id> |
| 50 | <url>${{releaseRepositoryURL}}</url> |
| 51 | <releases> |
| 52 | <enabled>true</enabled> |
| 53 | <updatePolicy>always</updatePolicy> |
| 54 | </releases> |
| 55 | <snapshots> |
| 56 | <enabled>false</enabled> |
| 57 | <updatePolicy>always</updatePolicy> |
| 58 | </snapshots> |
| 59 | </repository> |
| 60 | </repositories> |
| 61 | |
| 62 | </profile> |
| 63 | </profiles> |
| 64 | |
| 65 | <activeProfiles> |
| 66 | <activeProfile>policy-profile</activeProfile> |
| 67 | </activeProfiles> |
| 68 | |
| 69 | <servers> |
| 70 | <server> |
| 71 | <id>${{snapshotRepositoryID}}</id> |
| 72 | <username>${{repositoryUsername}}</username> |
| 73 | <password>${{repositoryPassword}}</password> |
| 74 | </server> |
| 75 | <server> |
| 76 | <id>${{releaseRepositoryID}}</id> |
| 77 | <username>${{repositoryUsername}}</username> |
| 78 | <password>${{repositoryPassword}}</password> |
| 79 | </server> |
| 80 | </servers> |
| 81 | |
| 82 | </settings> |