BUG-7657: Karaf 4 migration: provide Karaf 4 groupbasedpolicy features
[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.7.0-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16
17   <groupId>org.opendaylight.groupbasedpolicy</groupId>
18   <artifactId>groupbasedpolicy</artifactId>
19   <version>0.6.0-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21   <!-- <name> formatting is used by autorelease to parse and notify projects on
22        build failure. Please do not modify this unless you have a good reason. -->
23   <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
24
25   <dependencies>
26     <!-- model dependencies -->
27     <dependency>
28       <groupId>org.opendaylight.mdsal.model</groupId>
29       <artifactId>ietf-inet-types-2013-07-15</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.mdsal.model</groupId>
33       <artifactId>ietf-yang-types-20130715</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.mdsal.model</groupId>
37       <artifactId>yang-ext</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.mdsal</groupId>
41       <artifactId>mdsal-singleton-common-api</artifactId>
42     </dependency>
43     <!-- net utils dependencies -->
44     <dependency>
45       <groupId>com.googlecode.java-ipv6</groupId>
46       <artifactId>java-ipv6</artifactId>
47       <version>0.16</version>
48     </dependency>
49     <dependency>
50       <groupId>commons-net</groupId>
51       <artifactId>commons-net</artifactId>
52     </dependency>
53     <!-- testing dependencies -->
54     <dependency>
55       <groupId>junit</groupId>
56       <artifactId>junit</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.mockito</groupId>
61       <artifactId>mockito-core</artifactId>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.powermock</groupId>
66       <artifactId>powermock-module-junit4</artifactId>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.powermock</groupId>
71       <artifactId>powermock-api-mockito</artifactId>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>sal-binding-broker-impl</artifactId>
77       <type>test-jar</type>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81         <groupId>org.opendaylight.controller.model</groupId>
82         <artifactId>model-inventory</artifactId>
83         <scope>test</scope>
84     </dependency>
85   </dependencies>
86
87 <!-- project build -->
88   <build>
89     <plugins>
90       <plugin>
91         <groupId>org.apache.felix</groupId>
92         <artifactId>maven-bundle-plugin</artifactId>
93         <extensions>true</extensions>
94         <configuration>
95           <instructions>
96             <Export-Package>
97               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.*,
98               org.opendaylight.controller.config.yang.config.groupbasedpolicy.*,
99               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.groupbasedpolicy.*,
100               org.opendaylight.groupbasedpolicy.api.*,
101               org.opendaylight.groupbasedpolicy.dto,
102               org.opendaylight.groupbasedpolicy.util,
103               org.opendaylight.groupbasedpolicy.renderer.util
104             </Export-Package>
105             <Embed-Dependency>java-ipv6</Embed-Dependency>
106           </instructions>
107         </configuration>
108       </plugin>
109       <plugin>
110         <groupId>org.apache.maven.plugins</groupId>
111         <artifactId>maven-jar-plugin</artifactId>
112         <executions>
113           <execution>
114             <goals>
115               <goal>test-jar</goal>
116             </goals>
117           </execution>
118         </executions>
119       </plugin>
120     </plugins>
121   </build>
122 </project>