blob: b6574c22559b498e002024c8a8cf2446f11e03cd [file] [log] [blame]
Timoney, Dan (dt5972)84b361d2019-04-24 15:05:00 -04001<?xml version="1.0" encoding="UTF-8"?>
Arundathi Patil3d026852018-12-14 23:03:55 +05302<!--
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>
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>
27 <version>0.4.2-SNAPSHOT</version>
28 <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>
32 <version>0.4.2-SNAPSHOT</version>
33 <packaging>pom</packaging>
Arundathi Patil3d026852018-12-14 23:03:55 +053034
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040035 <name>cds-ui-client</name>
36
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
Arundathi Patil3d026852018-12-14 23:03:55 +053043
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040044 <build>
45 <plugins>
46 <plugin>
47 <groupId>com.github.eirslett</groupId>
48 <artifactId>frontend-maven-plugin</artifactId>
49 <!-- Use the latest released version: https://repo1.maven.org/maven2/com/github/eirslett/frontend-maven-plugin/ -->
50 <version>1.3</version>
51 <configuration>
52 <nodeVersion>v8.12.0</nodeVersion>
53 <nodeDownloadRoot>https://nodejs.org/dist/</nodeDownloadRoot>
54 <npmDownloadRoot>https://nodejs.org/dist/npm/</npmDownloadRoot>
55 <installDirectory>./</installDirectory>
56 </configuration>
57 <executions>
58 <execution>
59 <id>install node and npm</id>
60 <goals>
61 <goal>install-node-and-npm</goal>
62 </goals>
63 <phase>generate-resources</phase>
64 </execution>
Arundathi Patil3d026852018-12-14 23:03:55 +053065
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040066 <execution>
67 <id>npm install</id>
68 <goals>
69 <goal>npm</goal>
70 </goals>
Arundathi Patil3d026852018-12-14 23:03:55 +053071
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040072 <phase>generate-resources</phase>
Arundathi Patil3d026852018-12-14 23:03:55 +053073
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040074 <configuration>
75 <arguments>install</arguments>
76 </configuration>
77 </execution>
Arundathi Patil3d026852018-12-14 23:03:55 +053078
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040079 <execution>
80 <id>npm build</id>
81 <goals>
82 <goal>npm</goal>
83 </goals>
Arundathi Patil3d026852018-12-14 23:03:55 +053084
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040085 <phase>generate-resources</phase>
Arundathi Patil3d026852018-12-14 23:03:55 +053086
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040087 <configuration>
88 <arguments>run build</arguments>
89 </configuration>
90 </execution>
Arundathi Patil3d026852018-12-14 23:03:55 +053091
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040092 </executions>
93 </plugin>
94 </plugins>
95 </build>
Arundathi Patil3d026852018-12-14 23:03:55 +053096</project>