Merge "Changes features for odl-groupbasedpolicy-vpp"
[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.controller</groupId>
12     <artifactId>config-parent</artifactId>
13     <version>0.6.0-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16
17   <groupId>org.opendaylight.groupbasedpolicy</groupId>
18   <artifactId>groupbasedpolicy</artifactId>
19   <version>0.5.0-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21   <name>groupbasedpolicy-base</name>
22
23   <dependencies>
24     <!-- model dependencies -->
25     <dependency>
26       <groupId>org.opendaylight.mdsal.model</groupId>
27       <artifactId>ietf-inet-types-2013-07-15</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.mdsal.model</groupId>
31       <artifactId>ietf-yang-types-20130715</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.mdsal.model</groupId>
35       <artifactId>yang-ext</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.mdsal</groupId>
39       <artifactId>mdsal-singleton-common-api</artifactId>
40     </dependency>
41     <!-- net utils dependencies -->
42     <dependency>
43       <groupId>com.googlecode.java-ipv6</groupId>
44       <artifactId>java-ipv6</artifactId>
45       <version>0.16</version>
46     </dependency>
47     <dependency>
48       <groupId>commons-net</groupId>
49       <artifactId>commons-net</artifactId>
50     </dependency>
51     <!-- testing dependencies -->
52     <dependency>
53       <groupId>junit</groupId>
54       <artifactId>junit</artifactId>
55       <scope>test</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.mockito</groupId>
59       <artifactId>mockito-all</artifactId>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.powermock</groupId>
64       <artifactId>powermock-module-junit4</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.powermock</groupId>
69       <artifactId>powermock-api-mockito</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal-binding-broker-impl</artifactId>
75       <type>test-jar</type>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79         <groupId>org.opendaylight.controller.model</groupId>
80         <artifactId>model-inventory</artifactId>
81         <scope>test</scope>
82     </dependency>
83   </dependencies>
84
85 <!-- project build -->
86   <build>
87     <plugins>
88       <plugin>
89         <groupId>org.apache.felix</groupId>
90         <artifactId>maven-bundle-plugin</artifactId>
91         <extensions>true</extensions>
92         <configuration>
93           <instructions>
94             <Export-Package>
95               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.*,
96               org.opendaylight.controller.config.yang.config.groupbasedpolicy.*,
97               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.groupbasedpolicy.*,
98               org.opendaylight.groupbasedpolicy.api.*,
99               org.opendaylight.groupbasedpolicy.dto,
100               org.opendaylight.groupbasedpolicy.util,
101             </Export-Package>
102             <Embed-Dependency>java-ipv6</Embed-Dependency>
103           </instructions>
104         </configuration>
105       </plugin>
106       <plugin>
107         <groupId>org.apache.maven.plugins</groupId>
108         <artifactId>maven-jar-plugin</artifactId>
109         <executions>
110           <execution>
111             <goals>
112               <goal>test-jar</goal>
113             </goals>
114           </execution>
115         </executions>
116       </plugin>
117     </plugins>
118   </build>
119 </project>