Arundathi Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START========================================== |
| 3 | =================================================================== |
| 4 | Copyright (C) 2018 IBM Intellectual Property. All rights reserved. |
| 5 | =================================================================== |
| 6 | |
| 7 | Unless otherwise specified, all software contained herein is licensed |
| 8 | under the Apache License, Version 2.0 (the License); |
| 9 | you may not use this software except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations 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ët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 22 | 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 Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 26 | <groupId>org.onap.ccsdk.cds</groupId> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 27 | <artifactId>ui</artifactId> |
| 28 | <version>0.4.2-SNAPSHOT</version> |
| 29 | <relativePath>..</relativePath> |
| 30 | </parent> |
Arundathi Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 31 | |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 32 | <artifactId>ui-client</artifactId> |
| 33 | <version>0.4.2-SNAPSHOT</version> |
| 34 | <packaging>pom</packaging> |
Arundathi Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 35 | |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 36 | <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 Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 43 | |
Arundathi Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 44 | |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 45 | <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 Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 66 | |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 67 | <execution> |
| 68 | <id>npm install</id> |
| 69 | <goals> |
| 70 | <goal>npm</goal> |
| 71 | </goals> |
Arundathi Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 72 | |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 73 | <phase>generate-resources</phase> |
Arundathi Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 74 | |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 75 | <configuration> |
| 76 | <arguments>install</arguments> |
| 77 | </configuration> |
| 78 | </execution> |
Arundathi Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 79 | |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 80 | <execution> |
| 81 | <id>npm build</id> |
| 82 | <goals> |
| 83 | <goal>npm</goal> |
| 84 | </goals> |
Arundathi Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 85 | |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 86 | <phase>generate-resources</phase> |
Arundathi Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 87 | |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 88 | <configuration> |
| 89 | <arguments>run build</arguments> |
| 90 | </configuration> |
| 91 | </execution> |
Arundathi Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 92 | |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 93 | </executions> |
| 94 | </plugin> |
| 95 | </plugins> |
| 96 | </build> |
Arundathi Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 97 | </project> |