Merge "OPNFLWPLUG-1076 Migrate lldp-speaker, forwardingrules-sync and arbitratorrecon...
[openflowplugin.git] / extension / openflowplugin-extension-nicira / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.openflowplugin</groupId>
7         <artifactId>openflowplugin-extension-parent</artifactId>
8         <version>0.10.0-SNAPSHOT</version>
9         <relativePath>../</relativePath>
10     </parent>
11
12     <artifactId>openflowplugin-extension-nicira</artifactId>
13     <packaging>bundle</packaging>
14
15     <build>
16         <plugins>
17             <plugin>
18                 <groupId>org.apache.felix</groupId>
19                 <artifactId>maven-bundle-plugin</artifactId>
20             </plugin>
21         </plugins>
22     </build>
23
24     <dependencies>
25         <dependency>
26             <groupId>javax.annotation</groupId>
27             <artifactId>javax.annotation-api</artifactId>
28             <optional>true</optional>
29         </dependency>
30         <dependency>
31             <groupId>com.google.code.findbugs</groupId>
32             <artifactId>jsr305</artifactId>
33             <version>3.0.2</version>
34             <optional>true</optional>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>openflowplugin-extension-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>openflowjava-extension-nicira</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>openflowjava-extension-nicira-api</artifactId>
47         </dependency>
48         <!-- MD-SAL models -->
49         <dependency>
50             <groupId>${project.groupId}.model</groupId>
51             <artifactId>model-flow-base</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}.model</groupId>
55             <artifactId>model-flow-service</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>${project.groupId}.model</groupId>
59             <artifactId>model-flow-statistics</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.controller.model</groupId>
63             <artifactId>model-inventory</artifactId>
64         </dependency>
65         <!-- OpenFlowJava-API models -->
66         <dependency>
67             <groupId>${project.groupId}.openflowjava</groupId>
68             <artifactId>openflow-protocol-api</artifactId>
69         </dependency>
70         <!-- Test dependencies -->
71         <dependency>
72             <groupId>org.slf4j</groupId>
73             <artifactId>slf4j-log4j12</artifactId>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>pl.pragmatists</groupId>
78             <artifactId>JUnitParams</artifactId>
79             <scope>test</scope>
80         </dependency>
81     </dependencies>
82
83 </project>