Bump versions by x.(y+1).z for next dev cycle
[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.7.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>${project.groupId}</groupId>
27             <artifactId>openflowplugin-extension-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>openflowjava-extension-nicira</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>${project.groupId}</groupId>
35             <artifactId>openflowjava-extension-nicira-api</artifactId>
36         </dependency>
37         <!-- MD-SAL models -->
38         <dependency>
39             <groupId>${project.groupId}.model</groupId>
40             <artifactId>model-flow-base</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}.model</groupId>
44             <artifactId>model-flow-service</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>${project.groupId}.model</groupId>
48             <artifactId>model-flow-statistics</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.controller.model</groupId>
52             <artifactId>model-inventory</artifactId>
53         </dependency>
54         <!-- OpenFlowJava-API models -->
55         <dependency>
56             <groupId>${project.groupId}.openflowjava</groupId>
57             <artifactId>openflow-protocol-api</artifactId>
58         </dependency>
59         <!-- Test dependencies -->
60         <dependency>
61             <groupId>junit</groupId>
62             <artifactId>junit</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.mockito</groupId>
67             <artifactId>mockito-core</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.slf4j</groupId>
72             <artifactId>slf4j-log4j12</artifactId>
73             <scope>test</scope>
74         </dependency>
75     </dependencies>
76
77 </project>