cdade28938bcc555d7ab90bf5a2ce10dcc8f8b15
[honeycomb.git] / vbd / gui / module / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Cisco Systems, Inc. and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11   <parent>
12     <groupId>io.fd.honeycomb.common</groupId>
13     <artifactId>api-parent</artifactId>
14     <version>1.0.0-SNAPSHOT</version>
15     <relativePath>../../../common/api-parent</relativePath>
16   </parent>
17   
18   <groupId>io.fd.honeycomb.vbd</groupId>
19   <artifactId>vbd-ui-module</artifactId>
20   <version>1.0.0-SNAPSHOT</version>
21   <name>${project.artifactId}</name>
22   <description>VPP UI Module Resources</description>
23   <packaging>jar</packaging>
24
25   <build>
26     <plugins>
27       <plugin>
28         <groupId>com.github.eirslett</groupId>
29         <artifactId>frontend-maven-plugin</artifactId>
30         <version>0.0.27</version>
31         <configuration>
32           <nodeVersion>v0.12.9</nodeVersion>
33           <npmVersion>3.1.3</npmVersion>
34           <workingDirectory>src/main/resources/vpp/</workingDirectory>
35         </configuration>
36         <executions>
37           <execution>
38             <id>npm</id>
39             <goals>
40               <goal>install-node-and-npm</goal>
41               <goal>npm</goal>
42             </goals>
43             <phase>generate-resources</phase>
44           </execution>
45           <execution>
46             <id>bower</id>
47             <goals>
48               <goal>bower</goal>
49             </goals>
50           </execution>
51         </executions>
52       </plugin>
53     </plugins>
54   </build>
55
56 </project>