blob: abf5afff6a1099fa198f94304173601e4062466e [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============================================ -->
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>
Arundathi Patil3d026852018-12-14 23:03:55 +053025 <groupId>org.onap.ccsdk.cds</groupId>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040026 <artifactId>ui</artifactId>
Timoney, Dan (dt5972)1926b372019-09-11 10:54:30 -040027 <version>0.7.0-SNAPSHOT</version>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040028 <relativePath>..</relativePath>
29 </parent>
Arundathi Patil3d026852018-12-14 23:03:55 +053030
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040031 <artifactId>ui-client</artifactId>
Timoney, Dan (dt5972)1926b372019-09-11 10:54:30 -040032 <version>0.7.0-SNAPSHOT</version>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040033 <packaging>pom</packaging>
Arundathi Patil3d026852018-12-14 23:03:55 +053034
Singal, Kapil (ks220y)71f561e2019-09-18 10:05:39 -040035 <name>CDS UI Client</name>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040036
37 <properties>
38 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39 <npm.executable>npm</npm.executable>
40 <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
41 </properties>
Arundathi Patil3d026852018-12-14 23:03:55 +053042
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040043 <build>
44 <plugins>
45 <plugin>
46 <groupId>com.github.eirslett</groupId>
47 <artifactId>frontend-maven-plugin</artifactId>
48 <!-- Use the latest released version: https://repo1.maven.org/maven2/com/github/eirslett/frontend-maven-plugin/ -->
49 <version>1.3</version>
50 <configuration>
51 <nodeVersion>v8.12.0</nodeVersion>
Timoney, Dan (dt5972)dfe52052019-07-17 11:07:44 -040052 <npmVersion>6.4.1</npmVersion>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040053 <nodeDownloadRoot>https://nodejs.org/dist/</nodeDownloadRoot>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040054 <installDirectory>./</installDirectory>
55 </configuration>
56 <executions>
57 <execution>
58 <id>install node and npm</id>
59 <goals>
60 <goal>install-node-and-npm</goal>
61 </goals>
62 <phase>generate-resources</phase>
63 </execution>
Arundathi Patil3d026852018-12-14 23:03:55 +053064
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040065 <execution>
66 <id>npm install</id>
67 <goals>
68 <goal>npm</goal>
69 </goals>
Arundathi Patil3d026852018-12-14 23:03:55 +053070
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040071 <phase>generate-resources</phase>
Arundathi Patil3d026852018-12-14 23:03:55 +053072
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040073 <configuration>
74 <arguments>install</arguments>
75 </configuration>
76 </execution>
Arundathi Patil3d026852018-12-14 23:03:55 +053077
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040078 <execution>
79 <id>npm build</id>
80 <goals>
81 <goal>npm</goal>
82 </goals>
Arundathi Patil3d026852018-12-14 23:03:55 +053083
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040084 <phase>generate-resources</phase>
Arundathi Patil3d026852018-12-14 23:03:55 +053085
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040086 <configuration>
87 <arguments>run build</arguments>
88 </configuration>
89 </execution>
Arundathi Patil3d026852018-12-14 23:03:55 +053090
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040091 </executions>
92 </plugin>
93 </plugins>
94 </build>
Arundathi Patil3d026852018-12-14 23:03:55 +053095</project>