blob: b0b1c55ec68cf09c4d661dfd7e634f9bd46f60ca [file] [log] [blame]
Arundathi Patil3d026852018-12-14 23:03:55 +05301<!--
2============LICENSE_START==========================================
3===================================================================
4Copyright (C) 2018 IBM Intellectual Property. All rights reserved.
5===================================================================
6
7Unless otherwise specified, all software contained herein is licensed
8under the Apache License, Version 2.0 (the License);
9you may not use this software except in compliance with the License.
10You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14Unless required by applicable law or agreed to in writing, software
15distributed under the License is distributed on an "AS IS" BASIS,
16WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17See the License for the specific language governing permissions and
18limitations under the License.
19============LICENSE_END============================================ -->
20
21<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040022 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24
25 <parent>
Arundathi Patil3d026852018-12-14 23:03:55 +053026 <groupId>org.onap.ccsdk.cds</groupId>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040027 <artifactId>ui</artifactId>
28 <version>0.4.2-SNAPSHOT</version>
29 <relativePath>..</relativePath>
30 </parent>
Arundathi Patil3d026852018-12-14 23:03:55 +053031
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040032 <artifactId>ui-client</artifactId>
33 <version>0.4.2-SNAPSHOT</version>
34 <packaging>pom</packaging>
Arundathi Patil3d026852018-12-14 23:03:55 +053035
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040036 <name>cds-ui-client</name>
37
38 <properties>
39 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40 <npm.executable>npm</npm.executable>
41 <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
42 </properties>
Arundathi Patil3d026852018-12-14 23:03:55 +053043
Arundathi Patil3d026852018-12-14 23:03:55 +053044
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040045 <build>
46 <plugins>
47 <plugin>
48 <groupId>com.github.eirslett</groupId>
49 <artifactId>frontend-maven-plugin</artifactId>
50 <!-- Use the latest released version: https://repo1.maven.org/maven2/com/github/eirslett/frontend-maven-plugin/ -->
51 <version>1.3</version>
52 <configuration>
53 <nodeVersion>v8.12.0</nodeVersion>
54 <nodeDownloadRoot>https://nodejs.org/dist/</nodeDownloadRoot>
55 <npmDownloadRoot>https://nodejs.org/dist/npm/</npmDownloadRoot>
56 <installDirectory>./</installDirectory>
57 </configuration>
58 <executions>
59 <execution>
60 <id>install node and npm</id>
61 <goals>
62 <goal>install-node-and-npm</goal>
63 </goals>
64 <phase>generate-resources</phase>
65 </execution>
Arundathi Patil3d026852018-12-14 23:03:55 +053066
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040067 <execution>
68 <id>npm install</id>
69 <goals>
70 <goal>npm</goal>
71 </goals>
Arundathi Patil3d026852018-12-14 23:03:55 +053072
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040073 <phase>generate-resources</phase>
Arundathi Patil3d026852018-12-14 23:03:55 +053074
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040075 <configuration>
76 <arguments>install</arguments>
77 </configuration>
78 </execution>
Arundathi Patil3d026852018-12-14 23:03:55 +053079
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040080 <execution>
81 <id>npm build</id>
82 <goals>
83 <goal>npm</goal>
84 </goals>
Arundathi Patil3d026852018-12-14 23:03:55 +053085
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040086 <phase>generate-resources</phase>
Arundathi Patil3d026852018-12-14 23:03:55 +053087
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040088 <configuration>
89 <arguments>run build</arguments>
90 </configuration>
91 </execution>
Arundathi Patil3d026852018-12-14 23:03:55 +053092
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040093 </executions>
94 </plugin>
95 </plugins>
96 </build>
Arundathi Patil3d026852018-12-14 23:03:55 +053097</project>