Adding EIC.
[groupbasedpolicy.git] / groupbasedpolicy / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. 
3   This program and the accompanying materials are made available under the 
4   terms of the Eclipse Public License v1.0 which accompanies this distribution, 
5   and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8   <modelVersion>4.0.0</modelVersion>
9
10   <parent>
11     <groupId>org.opendaylight.groupbasedpolicy</groupId>
12     <artifactId>groupbasedpolicy.project</artifactId>
13     <version>0.2.0-SNAPSHOT</version>
14     <relativePath>../</relativePath>
15   </parent>
16
17   <artifactId>groupbasedpolicy</artifactId>
18   <packaging>bundle</packaging>
19   <name>groupbasedpolicy-base</name> 
20
21   <dependencies>
22     <!-- model dependencies -->
23     <dependency>
24       <groupId>org.opendaylight.yangtools.model</groupId>
25       <artifactId>ietf-inet-types</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.yangtools.model</groupId>
29       <artifactId>ietf-yang-types</artifactId>
30     </dependency>
31
32     <!-- controller dependencies -->
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>config-api</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>sal-binding-api</artifactId>
40     </dependency>
41
42     <!-- project specific dependencies -->
43     <dependency>
44       <groupId>com.google.guava</groupId>
45       <artifactId>guava</artifactId>
46     </dependency>
47
48     <!-- testing dependencies -->
49     <dependency>
50       <groupId>junit</groupId>
51       <artifactId>junit</artifactId>
52       <scope>test</scope>
53     </dependency>
54   </dependencies>
55
56   <!-- project build -->
57   <build>
58     <plugins>
59       <plugin>
60         <groupId>org.apache.felix</groupId>
61         <artifactId>maven-bundle-plugin</artifactId>
62         <extensions>true</extensions>
63         <configuration>
64           <instructions>
65             <Export-Package>
66               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.*,
67               org.opendaylight.controller.config.yang.config.endpoint_provider,
68               org.opendaylight.groupbasedpolicy.endpoint,
69               org.opendaylight.groupbasedpolicy.resolver.*,
70               org.opendaylight.groupbasedpolicy.util,
71             </Export-Package>
72           </instructions>
73           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
74         </configuration>
75       </plugin>
76       <plugin>
77         <groupId>org.opendaylight.yangtools</groupId>
78         <artifactId>yang-maven-plugin</artifactId>
79       </plugin>
80       <plugin>
81         <groupId>org.apache.maven.plugins</groupId>
82         <artifactId>maven-surefire-plugin</artifactId>
83         <configuration>
84           <redirectTestOutputToFile>true</redirectTestOutputToFile>
85         </configuration>
86       </plugin>
87     </plugins>
88   </build>
89 </project>
90