Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / extension / openflowjava-extension-nicira / pom.xml
1 <?xml version="1.0"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.openflowplugin</groupId>
7         <artifactId>openflowplugin-extension-parent</artifactId>
8         <version>0.8.0-SNAPSHOT</version>
9         <relativePath>../</relativePath>
10     </parent>
11     <artifactId>openflowjava-extension-nicira</artifactId>
12     <packaging>bundle</packaging>
13
14     <build>
15         <plugins>
16             <plugin>
17                 <groupId>org.apache.felix</groupId>
18                 <artifactId>maven-bundle-plugin</artifactId>
19             </plugin>
20         </plugins>
21     </build>
22
23
24     <dependencies>
25         <dependency>
26             <groupId>${project.groupId}.openflowjava</groupId>
27             <artifactId>openflow-protocol-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>${project.groupId}.openflowjava</groupId>
31             <artifactId>openflow-protocol-spi</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>${project.groupId}.openflowjava</groupId>
35             <artifactId>openflowjava-util</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>openflowjava-extension-nicira-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>io.netty</groupId>
43             <artifactId>netty-buffer</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>junit</groupId>
47             <artifactId>junit</artifactId>
48             <scope>test</scope>
49         </dependency>
50         <dependency>
51             <groupId>org.slf4j</groupId>
52             <artifactId>slf4j-log4j12</artifactId>
53             <scope>test</scope>
54         </dependency>
55         <dependency>
56             <groupId>org.mockito</groupId>
57             <artifactId>mockito-core</artifactId>
58             <scope>test</scope>
59         </dependency>
60     </dependencies>
61 </project>