Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / openflowjava / openflow-protocol-api / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.opendaylight.openflowplugin</groupId>
6         <artifactId>openflowplugin-parent</artifactId>
7         <version>0.8.0-SNAPSHOT</version>
8         <relativePath>../../parent</relativePath>
9     </parent>
10     <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
11     <artifactId>openflow-protocol-api</artifactId>
12     <version>0.8.0-SNAPSHOT</version>
13     <packaging>bundle</packaging>
14     <!-- <name> formatting is used by autorelease to parse and notify projects on
15          build failure. Please do not modify this unless you have a good reason. -->
16     <name>ODL :: openflowjava :: ${project.artifactId}</name>
17     <scm>
18         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
19         <tag>HEAD</tag>
20     </scm>
21
22     <dependencies>
23         <dependency>
24             <groupId>org.opendaylight.mdsal</groupId>
25             <artifactId>yang-binding</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.yangtools</groupId>
29             <artifactId>yang-common</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.mdsal.model</groupId>
33             <artifactId>ietf-inet-types-2013-07-15</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.mdsal.model</groupId>
37             <artifactId>ietf-yang-types-20130715</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.mdsal.model</groupId>
41             <artifactId>yang-ext</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>io.netty</groupId>
45             <artifactId>netty-buffer</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>junit</groupId>
49             <artifactId>junit</artifactId>
50             <scope>test</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.mockito</groupId>
54             <artifactId>mockito-core</artifactId>
55         </dependency>
56     </dependencies>
57 </project>