Timoney, Dan (dt5972) | 84b361d | 2019-04-24 15:05:00 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START========================================== |
| 4 | =================================================================== |
| 5 | Copyright (C) 2018 IBM Intellectual Property. All rights reserved. |
| 6 | =================================================================== |
| 7 | |
| 8 | Unless otherwise specified, all software contained herein is licensed |
| 9 | under the Apache License, Version 2.0 (the License); |
| 10 | you may not use this software except in compliance with the License. |
| 11 | You may obtain a copy of the License at |
| 12 | |
| 13 | http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 20 | ============LICENSE_END============================================ --> |
Timoney, Dan (dt5972) | 84b361d | 2019-04-24 15:05:00 -0400 | [diff] [blame] | 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | |
| 24 | <parent> |
Singal, Kapil (ks220y) | 7d397bd | 2020-09-21 09:53:32 -0400 | [diff] [blame] | 25 | <groupId>org.onap.ccsdk.cds</groupId> |
| 26 | <artifactId>cds-aggregator</artifactId> |
Dan Timoney | b0ca47d | 2022-04-26 13:44:15 -0400 | [diff] [blame] | 27 | <version>1.4.0-SNAPSHOT</version> |
Singal, Kapil (ks220y) | 7d397bd | 2020-09-21 09:53:32 -0400 | [diff] [blame] | 28 | <relativePath>..</relativePath> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 29 | </parent> |
| 30 | |
Singal, Kapil (ks220y) | 8de37f9 | 2020-09-11 13:58:42 -0400 | [diff] [blame] | 31 | <artifactId>cds-ui</artifactId> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 32 | <packaging>pom</packaging> |
| 33 | |
Singal, Kapil (ks220y) | 5844724 | 2020-12-15 19:02:17 -0500 | [diff] [blame] | 34 | <name>CDS UI (Root)</name> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 35 | <description>Creates Controller Design Studio UI Docker container</description> |
| 36 | |
SINGAL, KAPIL (ks220y) | 24f39fd | 2019-09-17 16:36:59 +0000 | [diff] [blame] | 37 | <modules> |
| 38 | <module>client</module> |
ahmedeldeeb50 | 0a907ab | 2020-02-13 12:09:13 +0200 | [diff] [blame] | 39 | <module>designer-client</module> |
SINGAL, KAPIL (ks220y) | 24f39fd | 2019-09-17 16:36:59 +0000 | [diff] [blame] | 40 | <module>server</module> |
| 41 | <module>application</module> |
| 42 | </modules> |
| 43 | |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 44 | <properties> |
Singal, Kapil (ks220y) | fbbc9bc | 2020-09-16 10:49:28 -0400 | [diff] [blame] | 45 | <npm.executable>npm</npm.executable> |
Ahmedeldeeb50 | 63eb67e | 2021-01-04 14:45:26 +0200 | [diff] [blame] | 46 | <!-- Properties for CDS-GUI to npm run build:local --> |
| 47 | <npm.skipBuild>false</npm.skipBuild> |
| 48 | <npm.skipBuildLocal>true</npm.skipBuildLocal> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 49 | </properties> |
Ahmedeldeeb50 | 63eb67e | 2021-01-04 14:45:26 +0200 | [diff] [blame] | 50 | |
| 51 | <profiles> |
| 52 | <!-- Profile to either run npm build or npm build:local --> |
| 53 | <profile> |
| 54 | <id>npmLocal</id> |
| 55 | <activation> |
| 56 | <property> |
| 57 | <name>npmLocal</name> |
| 58 | </property> |
| 59 | </activation> |
| 60 | <properties> |
| 61 | <npm.skipBuild>true</npm.skipBuild> |
| 62 | <npm.skipBuildLocal>false</npm.skipBuildLocal> |
| 63 | </properties> |
| 64 | </profile> |
| 65 | </profiles> |
Timoney, Dan (dt5972) | 84b361d | 2019-04-24 15:05:00 -0400 | [diff] [blame] | 66 | </project> |