Arundathi Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START========================================== |
| 3 | =================================================================== |
| 4 | Copyright (C) 2018 IBM Intellectual Property. All rights reserved. |
| 5 | =================================================================== |
| 6 | |
| 7 | Unless otherwise specified, all software contained herein is licensed |
| 8 | under the Apache License, Version 2.0 (the License); |
| 9 | you may not use this software 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 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <groupId>org.onap.ccsdk.cds</groupId> |
| 25 | <artifactId>controller-design-studio</artifactId> |
| 26 | <version>1.0.0-SNAPSHOT</version> |
| 27 | <packaging>pom</packaging> |
| 28 | |
| 29 | <name>controller-design-studio</name> |
| 30 | |
| 31 | <modules> |
| 32 | <module>cds-ui/client</module> |
| 33 | </modules> |
| 34 | |
| 35 | <properties> |
| 36 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 37 | <npm.executable>npm</npm.executable> |
| 38 | <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> |
| 39 | </properties> |
| 40 | |
| 41 | <!-- ================================================================================== --> |
| 42 | <!-- Distribution Management Sites --> |
| 43 | <!-- ================================================================================== --> |
| 44 | <distributionManagement> |
| 45 | <repository> |
| 46 | <id>ecomp-releases</id> |
| 47 | <name>openecomp-repository-releases</name> |
| 48 | <url>${onap.nexus.url}/content/repositories/releases</url> |
| 49 | </repository> |
| 50 | <snapshotRepository> |
| 51 | <id>ecomp-snapshots</id> |
| 52 | <name>openecomp-repository-snapshots</name> |
| 53 | <url>${onap.nexus.url}/content/repositories/snapshots</url> |
| 54 | </snapshotRepository> |
| 55 | </distributionManagement> |
| 56 | |
| 57 | |
| 58 | |
| 59 | </project> |