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