Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / openflowjava / features-openflowjava-aggregator / odl-openflowjava-protocol / 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.odlparent</groupId>
7         <artifactId>single-feature-parent</artifactId>
8         <version>3.1.3</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
13     <artifactId>odl-openflowjava-protocol</artifactId>
14     <version>0.8.0-SNAPSHOT</version>
15     <packaging>feature</packaging>
16
17     <!-- <name> formatting is used by autorelease to parse and notify projects on
18          build failure. Please do not modify this unless you have a good reason. -->
19     <name>ODL :: openflowjava :: ${project.artifactId}</name>
20
21     <dependencyManagement>
22         <dependencies>
23             <!-- This project -->
24             <dependency>
25                 <groupId>org.opendaylight.openflowplugin</groupId>
26                 <artifactId>openflowplugin-artifacts</artifactId>
27                 <version>${project.version}</version>
28                 <scope>import</scope>
29                 <type>pom</type>
30             </dependency>
31
32             <!-- Netty -->
33             <dependency>
34                 <groupId>org.opendaylight.odlparent</groupId>
35                 <artifactId>odlparent-artifacts</artifactId>
36                 <version>3.1.3</version>
37                 <scope>import</scope>
38                 <type>pom</type>
39             </dependency>
40
41             <!-- MD-SAL -->
42             <dependency>
43                 <groupId>org.opendaylight.mdsal.model</groupId>
44                 <artifactId>mdsal-model-artifacts</artifactId>
45                 <version>0.14.0-SNAPSHOT</version>
46                 <scope>import</scope>
47                 <type>pom</type>
48             </dependency>
49         </dependencies>
50     </dependencyManagement>
51
52
53     <dependencies>
54         <dependency>
55             <groupId>org.opendaylight.mdsal.model</groupId>
56             <artifactId>odl-mdsal-model-rfc6991</artifactId>
57             <type>xml</type>
58             <classifier>features</classifier>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.odlparent</groupId>
62             <artifactId>odl-netty-4</artifactId>
63             <type>xml</type>
64             <classifier>features</classifier>
65         </dependency>
66         <!-- bundle dependencies -->
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>openflow-protocol-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>openflow-protocol-spi</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>openflow-protocol-impl</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>openflowjava-util</artifactId>
82         </dependency>
83         <!-- config files -->
84         <dependency>
85             <groupId>${project.groupId}</groupId>
86             <artifactId>openflowjava-blueprint-config</artifactId>
87             <type>xml</type>
88             <classifier>config</classifier>
89         </dependency>
90         <dependency>
91             <groupId>${project.groupId}</groupId>
92             <artifactId>openflowjava-blueprint-config</artifactId>
93             <type>xml</type>
94             <classifier>legacyConfig</classifier>
95         </dependency>
96     </dependencies>
97
98 </project>