Bug 3738: GBP coexistence with SFC
[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.4.0-SNAPSHOT</version>
14     <relativePath>../</relativePath>
15   </parent>
16
17   <artifactId>ofoverlay-renderer</artifactId>
18   <packaging>bundle</packaging>
19
20   <properties>
21     <ovsdb.version>1.3.0-SNAPSHOT</ovsdb.version>
22     <openflowplugin.version>0.3.0-SNAPSHOT</openflowplugin.version>
23     <liblldp.version>0.11.0-SNAPSHOT</liblldp.version>
24     <sfc.version>0.3.0-SNAPSHOT</sfc.version>
25   </properties>
26
27   <dependencies>
28     <!-- model dependencies -->
29     <dependency>
30       <groupId>org.opendaylight.ovsdb</groupId>
31       <artifactId>southbound-api</artifactId>
32       <version>${ovsdb.version}</version>
33     </dependency>
34     <!-- project specific dependencies -->
35     <dependency>
36       <groupId>org.opendaylight.openflowplugin</groupId>
37       <artifactId>openflowplugin-extension-nicira</artifactId>
38       <version>${openflowplugin.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>liblldp</artifactId>
43       <version>${liblldp.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>commons-net</groupId>
47       <artifactId>commons-net</artifactId>
48     </dependency>
49     <!-- SFC -->
50     <dependency>
51       <groupId>org.opendaylight.sfc</groupId>
52       <artifactId>sfc-provider</artifactId>
53       <version>${sfc.version}</version>
54     </dependency>
55     <!-- testing dependencies -->
56     <dependency>
57       <groupId>junit</groupId>
58       <artifactId>junit</artifactId>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.mockito</groupId>
63       <artifactId>mockito-all</artifactId>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>sal-binding-broker-impl</artifactId>
69       <type>test-jar</type>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.groupbasedpolicy</groupId>
74       <artifactId>groupbasedpolicy</artifactId>
75       <version>${project.version}</version>
76       <type>test-jar</type>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.powermock</groupId>
81       <artifactId>powermock-module-junit4</artifactId>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.powermock</groupId>
86       <artifactId>powermock-api-mockito</artifactId>
87       <scope>test</scope>
88     </dependency>
89
90   </dependencies>
91
92   <!-- project build -->
93   <build>
94     <!-- We use the maven-resources-plugin to copy a class from the groupbasepolicy
95       bundle that we need in order to run some unit tests in the renderer (classes
96       in the test directory aren't packaged in bundles, and instead of keeping
97       separate copies, we just copy the file(s) needed in order to run the test). -->
98     <plugins>
99       <plugin>
100         <groupId>org.apache.felix</groupId>
101         <artifactId>maven-bundle-plugin</artifactId>
102         <extensions>true</extensions>
103         <configuration>
104           <instructions>
105             <Export-Package>
106               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.ofoverlay.rev140528.*
107             </Export-Package>
108           </instructions>
109         </configuration>
110       </plugin>
111     </plugins>
112   </build>
113 </project>