blob: 9e8b087c9b801338270f7322017a6f510dfa80f4 [file] [log] [blame]
Timoney, Dan (dt5972)84b361d2019-04-24 15:05:00 -04001<?xml version="1.0" encoding="UTF-8"?>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -04002<!--
3============LICENSE_START==========================================
4===================================================================
5Copyright (C) 2018 IBM Intellectual Property. All rights reserved.
6===================================================================
7
8Unless otherwise specified, all software contained herein is licensed
9under the Apache License, Version 2.0 (the License);
10you may not use this software except in compliance with the License.
11You may obtain a copy of the License at
12
13 http://www.apache.org/licenses/LICENSE-2.0
14
15Unless required by applicable law or agreed to in writing, software
16distributed under the License is distributed on an "AS IS" BASIS,
17WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18See the License for the specific language governing permissions and
19limitations under the License.
20============LICENSE_END============================================ -->
Dan Timoney8edec222020-04-07 11:51:20 -040021
Timoney, Dan (dt5972)84b361d2019-04-24 15:05:00 -040022<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ëtc90edac2019-03-25 13:04:18 -040023 <modelVersion>4.0.0</modelVersion>
24
25 <parent>
Singal, Kapil (ks220y)7d397bd2020-09-21 09:53:32 -040026 <groupId>org.onap.ccsdk.cds</groupId>
27 <artifactId>cds-aggregator</artifactId>
Dan Timoneyc243c622021-08-03 11:47:50 -040028 <version>1.1.6-SNAPSHOT</version>
Singal, Kapil (ks220y)7d397bd2020-09-21 09:53:32 -040029 <relativePath>..</relativePath>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040030 </parent>
31
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040032 <artifactId>cds-ui</artifactId>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040033 <packaging>pom</packaging>
34
Singal, Kapil (ks220y)58447242020-12-15 19:02:17 -050035 <name>CDS UI (Root)</name>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040036 <description>Creates Controller Design Studio UI Docker container</description>
37
SINGAL, KAPIL (ks220y)24f39fd2019-09-17 16:36:59 +000038 <modules>
39 <module>client</module>
ahmedeldeeb500a907ab2020-02-13 12:09:13 +020040 <module>designer-client</module>
SINGAL, KAPIL (ks220y)24f39fd2019-09-17 16:36:59 +000041 <module>server</module>
42 <module>application</module>
43 </modules>
44
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040045 <properties>
Singal, Kapil (ks220y)fbbc9bc2020-09-16 10:49:28 -040046 <npm.executable>npm</npm.executable>
Ahmedeldeeb5063eb67e2021-01-04 14:45:26 +020047 <!-- Properties for CDS-GUI to npm run build:local -->
48 <npm.skipBuild>false</npm.skipBuild>
49 <npm.skipBuildLocal>true</npm.skipBuildLocal>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040050 </properties>
Ahmedeldeeb5063eb67e2021-01-04 14:45:26 +020051
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)84b361d2019-04-24 15:05:00 -040067</project>