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============================================ --> |
Dan Timoney | 8edec22 | 2020-04-07 11:51:20 -0400 | [diff] [blame] | 21 | |
Timoney, Dan (dt5972) | 84b361d | 2019-04-24 15:05:00 -0400 | [diff] [blame] | 22 | <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] | 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | |
| 25 | <parent> |
Singal, Kapil (ks220y) | 7d397bd | 2020-09-21 09:53:32 -0400 | [diff] [blame] | 26 | <groupId>org.onap.ccsdk.cds</groupId> |
| 27 | <artifactId>cds-aggregator</artifactId> |
Dan Timoney | c243c62 | 2021-08-03 11:47:50 -0400 | [diff] [blame] | 28 | <version>1.1.6-SNAPSHOT</version> |
Singal, Kapil (ks220y) | 7d397bd | 2020-09-21 09:53:32 -0400 | [diff] [blame] | 29 | <relativePath>..</relativePath> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 30 | </parent> |
| 31 | |
Singal, Kapil (ks220y) | 8de37f9 | 2020-09-11 13:58:42 -0400 | [diff] [blame] | 32 | <artifactId>cds-ui</artifactId> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 33 | <packaging>pom</packaging> |
| 34 | |
Singal, Kapil (ks220y) | 5844724 | 2020-12-15 19:02:17 -0500 | [diff] [blame] | 35 | <name>CDS UI (Root)</name> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 36 | <description>Creates Controller Design Studio UI Docker container</description> |
| 37 | |
SINGAL, KAPIL (ks220y) | 24f39fd | 2019-09-17 16:36:59 +0000 | [diff] [blame] | 38 | <modules> |
| 39 | <module>client</module> |
ahmedeldeeb50 | 0a907ab | 2020-02-13 12:09:13 +0200 | [diff] [blame] | 40 | <module>designer-client</module> |
SINGAL, KAPIL (ks220y) | 24f39fd | 2019-09-17 16:36:59 +0000 | [diff] [blame] | 41 | <module>server</module> |
| 42 | <module>application</module> |
| 43 | </modules> |
| 44 | |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 45 | <properties> |
Singal, Kapil (ks220y) | fbbc9bc | 2020-09-16 10:49:28 -0400 | [diff] [blame] | 46 | <npm.executable>npm</npm.executable> |
Ahmedeldeeb50 | 63eb67e | 2021-01-04 14:45:26 +0200 | [diff] [blame] | 47 | <!-- Properties for CDS-GUI to npm run build:local --> |
| 48 | <npm.skipBuild>false</npm.skipBuild> |
| 49 | <npm.skipBuildLocal>true</npm.skipBuildLocal> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 50 | </properties> |
Ahmedeldeeb50 | 63eb67e | 2021-01-04 14:45:26 +0200 | [diff] [blame] | 51 | |
| 52 | <profiles> |
| 53 | <!-- Profile to either run npm build or npm build:local --> |
| 54 | <profile> |
| 55 | <id>npmLocal</id> |
| 56 | <activation> |
| 57 | <property> |
| 58 | <name>npmLocal</name> |
| 59 | </property> |
| 60 | </activation> |
| 61 | <properties> |
| 62 | <npm.skipBuild>true</npm.skipBuild> |
| 63 | <npm.skipBuildLocal>false</npm.skipBuildLocal> |
| 64 | </properties> |
| 65 | </profile> |
| 66 | </profiles> |
Timoney, Dan (dt5972) | 84b361d | 2019-04-24 15:05:00 -0400 | [diff] [blame] | 67 | </project> |