UT: ofoverlay-arp
[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
80   </dependencies>
81
82   <!-- project build -->
83   <build>
84     <!-- We use the maven-resources-plugin to copy a class from the groupbasepolicy
85       bundle that we need in order to run some unit tests in the renderer (classes
86       in the test directory aren't packaged in bundles, and instead of keeping
87       separate copies, we just copy the file(s) needed in order to run the test). -->
88     <plugins>
89       <plugin>
90         <groupId>org.apache.felix</groupId>
91         <artifactId>maven-bundle-plugin</artifactId>
92         <extensions>true</extensions>
93         <configuration>
94           <instructions>
95             <Export-Package>
96               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.ofoverlay.rev140528.*
97             </Export-Package>
98           </instructions>
99         </configuration>
100       </plugin>
101     </plugins>
102   </build>
103 </project>