Bump odlparent to 5.0.0
[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.9.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             <optional>true</optional>
34         </dependency>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>openflowplugin-extension-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>openflowjava-extension-nicira</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>openflowjava-extension-nicira-api</artifactId>
46         </dependency>
47         <!-- MD-SAL models -->
48         <dependency>
49             <groupId>${project.groupId}.model</groupId>
50             <artifactId>model-flow-base</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}.model</groupId>
54             <artifactId>model-flow-service</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}.model</groupId>
58             <artifactId>model-flow-statistics</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.controller.model</groupId>
62             <artifactId>model-inventory</artifactId>
63         </dependency>
64         <!-- OpenFlowJava-API models -->
65         <dependency>
66             <groupId>${project.groupId}.openflowjava</groupId>
67             <artifactId>openflow-protocol-api</artifactId>
68         </dependency>
69         <!-- Test dependencies -->
70         <dependency>
71             <groupId>org.slf4j</groupId>
72             <artifactId>slf4j-log4j12</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>pl.pragmatists</groupId>
77             <artifactId>JUnitParams</artifactId>
78             <scope>test</scope>
79         </dependency>
80     </dependencies>
81
82 </project>