New features
[groupbasedpolicy.git] / ui-backend / pom.xml
1 <?xml version="1.0"?>
2 <project
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5   <modelVersion>4.0.0</modelVersion>
6
7   <parent>
8     <groupId>org.opendaylight.controller</groupId>
9     <artifactId>config-parent</artifactId>
10     <version>0.4.0-SNAPSHOT</version>
11     <relativePath/>
12   </parent>
13
14   <groupId>org.opendaylight.groupbasedpolicy</groupId>
15   <artifactId>ui-backend</artifactId>
16   <version>0.3.0-SNAPSHOT</version>
17   <packaging>bundle</packaging>
18
19   <!-- project build -->
20   <build>
21     <plugins>
22       <plugin>
23         <groupId>org.apache.felix</groupId>
24         <artifactId>maven-bundle-plugin</artifactId>
25         <extensions>true</extensions>
26         <configuration>
27           <instructions>
28             <Export-Package>
29             </Export-Package>
30           </instructions>
31           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
32         </configuration>
33       </plugin>
34       <plugin>
35         <groupId>org.opendaylight.yangtools</groupId>
36         <artifactId>yang-maven-plugin</artifactId>
37       </plugin>
38       <plugin>
39         <groupId>org.apache.maven.plugins</groupId>
40         <artifactId>maven-surefire-plugin</artifactId>
41         <configuration>
42           <redirectTestOutputToFile>true</redirectTestOutputToFile>
43         </configuration>
44       </plugin>
45     </plugins>
46   </build>
47
48   <dependencies>
49     <dependency>
50       <groupId>org.opendaylight.groupbasedpolicy</groupId>
51       <artifactId>groupbasedpolicy</artifactId>
52       <version>${project.version}</version>
53     </dependency>
54   </dependencies>
55 </project>