Fully remove Maven Sites
[lispflowmapping.git] / ui / bundle / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.lispflowmapping</groupId>
7         <artifactId>lispflowmapping-ui</artifactId>
8         <version>1.6.0-SNAPSHOT</version>
9     </parent>
10
11     <artifactId>lispflowmapping-ui-bundle</artifactId>
12     <packaging>bundle</packaging>
13     <!-- <name> formatting is used by autorelease to parse and notify projects on
14          build failure. Please do not modify this unless you have a good reason. -->
15     <name>ODL :: lispflowmapping :: ${project.artifactId}</name>
16
17     <dependencies>
18         <dependency>
19             <groupId>org.opendaylight.dlux</groupId>
20             <artifactId>loader</artifactId>
21             <version>${dlux.loader.version}</version>
22         </dependency>
23         <dependency>
24             <groupId>org.opendaylight.lispflowmapping</groupId>
25             <artifactId>lispflowmapping-ui-module</artifactId>
26             <version>${project.version}</version>
27             <scope>provided</scope>
28         </dependency>
29     </dependencies>
30
31     <build>
32         <resources>
33             <resource>
34                 <directory>target/generated-resources</directory>
35             </resource>
36             <resource>
37                 <directory>src/main/resources</directory>
38             </resource>
39         </resources>
40         <plugins>
41             <plugin>
42                 <groupId>org.apache.maven.plugins</groupId>
43                 <artifactId>maven-dependency-plugin</artifactId>
44                 <!-- <version>2.6</version> -->
45                 <executions>
46                     <execution>
47                         <id>unpack-loader-resources</id>
48                         <goals>
49                             <goal>unpack</goal>
50                         </goals>
51                         <phase>generate-resources</phase>
52                         <configuration>
53                             <artifactItems>
54                                 <artifactItem>
55                                     <groupId>org.opendaylight.lispflowmapping</groupId>
56                                     <artifactId>lispflowmapping-ui-module</artifactId>
57                                     <version>${lispflowmapping.version}</version>
58                                     <overWrite>true</overWrite>
59                                     <outputDirectory>${project.build.directory}/generated-resources</outputDirectory>
60                                 </artifactItem>
61                             </artifactItems>
62                             <excludes>META-INF\/**</excludes>
63                             <ignorePermissions>false</ignorePermissions>
64                         </configuration>
65                     </execution>
66                 </executions>
67             </plugin>
68             <plugin>
69                 <groupId>org.apache.felix</groupId>
70                 <artifactId>maven-bundle-plugin</artifactId>
71             </plugin>
72         </plugins>
73     </build>
74 </project>