blob: ceaa58e63f6df5648600a883a2993697314638c8 [file] [log] [blame]
Timoney, Dan (dt5972)84b361d2019-04-24 15:05:00 -04001<?xml version="1.0" encoding="UTF-8"?>
Singal, Kapil (ks220y)71f561e2019-09-18 10:05:39 -04002<!--
Arundathi Patil3d026852018-12-14 23:03:55 +05303============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 Timoneya49a8ee2024-08-08 16:07:52 -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">
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040023 <modelVersion>4.0.0</modelVersion>
Alexis de Talhouƫtc90edac2019-03-25 13:04:18 -040024
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040025 <parent>
26 <groupId>org.onap.ccsdk.cds</groupId>
27 <artifactId>cds-ui</artifactId>
Dan Timoney0c0a17f2024-12-17 11:01:03 -050028 <version>1.8.0-SNAPSHOT</version>
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040029 <relativePath>..</relativePath>
30 </parent>
31
32 <artifactId>cds-ui-client</artifactId>
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040033 <packaging>pom</packaging>
Arundathi Patil3d026852018-12-14 23:03:55 +053034
Singal, Kapil (ks220y)58447242020-12-15 19:02:17 -050035 <name>CDS UI - Client</name>
Arundathi Patil3d026852018-12-14 23:03:55 +053036
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040037 <build>
38 <plugins>
39 <plugin>
40 <groupId>com.github.eirslett</groupId>
41 <artifactId>frontend-maven-plugin</artifactId>
42 <!-- Use the latest released version: https://repo1.maven.org/maven2/com/github/eirslett/frontend-maven-plugin/ -->
Singal, Kapil (ks220y)613e8252022-08-22 10:55:48 -040043 <version>1.12.1</version>
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040044 <configuration>
45 <nodeVersion>v8.12.0</nodeVersion>
46 <npmVersion>6.4.1</npmVersion>
47 <nodeDownloadRoot>https://nodejs.org/dist/</nodeDownloadRoot>
48 <installDirectory>./</installDirectory>
49 </configuration>
50 <executions>
51 <execution>
52 <id>install node and npm</id>
53 <goals>
54 <goal>install-node-and-npm</goal>
55 </goals>
56 <phase>generate-resources</phase>
57 </execution>
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040058 <execution>
59 <id>npm install</id>
60 <goals>
61 <goal>npm</goal>
62 </goals>
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040063 <phase>generate-resources</phase>
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040064 <configuration>
65 <arguments>install</arguments>
66 </configuration>
67 </execution>
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040068 <execution>
69 <id>npm build</id>
70 <goals>
71 <goal>npm</goal>
72 </goals>
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040073 <phase>generate-resources</phase>
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040074 <configuration>
75 <arguments>run build</arguments>
76 </configuration>
77 </execution>
Singal, Kapil (ks220y)8de37f92020-09-11 13:58:42 -040078 </executions>
79 </plugin>
80 </plugins>
81 </build>
Arundathi Patil3d026852018-12-14 23:03:55 +053082</project>