BUG-7657: Karaf 4 migration: provide Karaf 4 groupbasedpolicy features
[groupbasedpolicy.git] / renderers / ofoverlay / 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-renderers</artifactId>
13     <version>0.6.0-SNAPSHOT</version>
14     <relativePath>../</relativePath>
15   </parent>
16
17   <artifactId>ofoverlay-renderer</artifactId>
18   <packaging>bundle</packaging>
19   <!-- <name> formatting is used by autorelease to parse and notify projects on
20        build failure. Please do not modify this unless you have a good reason. -->
21   <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
22
23   <properties>
24     <ovsdb.version>1.5.0-SNAPSHOT</ovsdb.version>
25     <openflowplugin.version>0.5.0-SNAPSHOT</openflowplugin.version>
26     <liblldp.version>0.13.0-SNAPSHOT</liblldp.version>
27   </properties>
28
29   <dependencies>
30     <!-- model dependencies -->
31     <dependency>
32       <groupId>org.opendaylight.ovsdb</groupId>
33       <artifactId>southbound-api</artifactId>
34       <version>${ovsdb.version}</version>
35     </dependency>
36     <!-- project specific dependencies -->
37     <dependency>
38       <groupId>org.opendaylight.openflowplugin</groupId>
39       <artifactId>openflowplugin-extension-nicira</artifactId>
40       <version>${openflowplugin.version}</version>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>liblldp</artifactId>
45       <version>${liblldp.version}</version>
46     </dependency>
47     <dependency>
48       <groupId>commons-net</groupId>
49       <artifactId>commons-net</artifactId>
50     </dependency>
51     <!-- REST client-->
52     <dependency>
53        <groupId>com.sun.jersey</groupId>
54        <artifactId>jersey-client</artifactId>
55     </dependency>
56     <dependency>
57        <groupId>com.google.code.gson</groupId>
58        <artifactId>gson</artifactId>
59     </dependency>
60     <!-- SFC -->
61     <dependency>
62       <groupId>org.opendaylight.sfc</groupId>
63       <artifactId>sfc-provider</artifactId>
64     </dependency>
65     <!-- testing dependencies -->
66     <dependency>
67       <groupId>junit</groupId>
68       <artifactId>junit</artifactId>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.mockito</groupId>
73       <artifactId>mockito-core</artifactId>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>sal-binding-broker-impl</artifactId>
79       <type>test-jar</type>
80       <scope>test</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.groupbasedpolicy</groupId>
84       <artifactId>groupbasedpolicy</artifactId>
85       <version>${project.version}</version>
86       <type>test-jar</type>
87       <scope>test</scope>
88     </dependency>
89     <dependency>
90       <groupId>org.powermock</groupId>
91       <artifactId>powermock-module-junit4</artifactId>
92       <scope>test</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.powermock</groupId>
96       <artifactId>powermock-api-mockito</artifactId>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>com.sun.jersey.jersey-test-framework</groupId>
101       <artifactId>jersey-test-framework-grizzly2</artifactId>
102       <scope>test</scope>
103     </dependency>
104
105   </dependencies>
106
107   <!-- project build -->
108   <build>
109     <!-- We use the maven-resources-plugin to copy a class from the groupbasepolicy
110       bundle that we need in order to run some unit tests in the renderer (classes
111       in the test directory aren't packaged in bundles, and instead of keeping
112       separate copies, we just copy the file(s) needed in order to run the test). -->
113     <plugins>
114       <plugin>
115         <groupId>org.apache.felix</groupId>
116         <artifactId>maven-bundle-plugin</artifactId>
117         <extensions>true</extensions>
118         <configuration>
119           <instructions>
120             <Export-Package>
121               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.ofoverlay.rev140528.*
122             </Export-Package>
123           </instructions>
124         </configuration>
125       </plugin>
126     </plugins>
127   </build>
128 </project>