Fix copyright header
[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.groupbasedpolicy</groupId>
9     <artifactId>groupbasedpolicy.project</artifactId>
10     <version>0.3.0-SNAPSHOT</version>
11   </parent>
12
13   <artifactId>ui-backend</artifactId>
14   <packaging>bundle</packaging>
15
16   <!-- project build -->
17   <build>
18     <plugins>
19       <plugin>
20         <groupId>org.apache.felix</groupId>
21         <artifactId>maven-bundle-plugin</artifactId>
22         <extensions>true</extensions>
23         <configuration>
24           <instructions>
25             <Export-Package>
26             </Export-Package>
27           </instructions>
28           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
29         </configuration>
30       </plugin>
31       <plugin>
32         <groupId>org.opendaylight.yangtools</groupId>
33         <artifactId>yang-maven-plugin</artifactId>
34       </plugin>
35       <plugin>
36         <groupId>org.apache.maven.plugins</groupId>
37         <artifactId>maven-surefire-plugin</artifactId>
38         <configuration>
39           <redirectTestOutputToFile>true</redirectTestOutputToFile>
40         </configuration>
41       </plugin>
42     </plugins>
43   </build>
44
45   <dependencies>
46     <dependency>
47       <groupId>org.opendaylight.groupbasedpolicy</groupId>
48       <artifactId>groupbasedpolicy</artifactId>
49     </dependency>
50
51     <!-- controller dependencies -->
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>sal-binding-api</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>sal-binding-config</artifactId>
59     </dependency>
60   </dependencies>
61 </project>