blob: 8cfbb80c40ff0b6a690ddd429f579aa672d28e22 [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============================================ -->
Timoney, Dan (dt5972)84b361d2019-04-24 15:05:00 -040021<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 -040022 <modelVersion>4.0.0</modelVersion>
23
24 <parent>
Singal, Kapil (ks220y)7d397bd2020-09-21 09:53:32 -040025 <groupId>org.onap.ccsdk.cds</groupId>
26 <artifactId>cds-aggregator</artifactId>
Dan Timoneyb0ca47d2022-04-26 13:44:15 -040027 <version>1.4.0-SNAPSHOT</version>
Singal, Kapil (ks220y)7d397bd2020-09-21 09:53:32 -040028 <relativePath>..</relativePath>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040029 </parent>
30
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040031 <artifactId>cds-ui</artifactId>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040032 <packaging>pom</packaging>
33
Singal, Kapil (ks220y)58447242020-12-15 19:02:17 -050034 <name>CDS UI (Root)</name>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040035 <description>Creates Controller Design Studio UI Docker container</description>
36
SINGAL, KAPIL (ks220y)24f39fd2019-09-17 16:36:59 +000037 <modules>
38 <module>client</module>
ahmedeldeeb500a907ab2020-02-13 12:09:13 +020039 <module>designer-client</module>
SINGAL, KAPIL (ks220y)24f39fd2019-09-17 16:36:59 +000040 <module>server</module>
41 <module>application</module>
42 </modules>
43
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040044 <properties>
Singal, Kapil (ks220y)fbbc9bc2020-09-16 10:49:28 -040045 <npm.executable>npm</npm.executable>
Ahmedeldeeb5063eb67e2021-01-04 14:45:26 +020046 <!-- Properties for CDS-GUI to npm run build:local -->
47 <npm.skipBuild>false</npm.skipBuild>
48 <npm.skipBuildLocal>true</npm.skipBuildLocal>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040049 </properties>
Ahmedeldeeb5063eb67e2021-01-04 14:45:26 +020050
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)84b361d2019-04-24 15:05:00 -040066</project>