Release Oxygen
[groupbasedpolicy.git] / groupbasedpolicy-ui / module / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2014 Inocybe Technologies, and others. All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12  <parent>
13     <groupId>org.opendaylight.groupbasedpolicy</groupId>
14     <artifactId>groupbasedpolicy-ui</artifactId>
15     <version>0.7.4</version>
16   </parent>
17
18   <artifactId>groupbasedpolicy-ui-module</artifactId>
19   <!-- <name> formatting is used by autorelease to parse and notify projects on
20        build failure. Please do not modify this unless you have a good reason. -->
21   <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
22   <description>GBP 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>1.0</version>
31                 <configuration>
32                     <nodeVersion>v6.2.2</nodeVersion>
33                     <npmVersion>3.9.5</npmVersion>
34                     <workingDirectory>src/main/resources/gbp/</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>gulp</id>
47                         <goals>
48                             <goal>gulp</goal>
49                         </goals>
50                         <configuration>
51                             <arguments>build</arguments>
52                         </configuration>
53                     </execution>
54                 </executions>
55             </plugin>
56         </plugins>
57     </build>
58
59 </project>