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"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6     <modelVersion>4.0.0</modelVersion>
7     <parent>
8         <groupId>org.opendaylight.odlparent</groupId>
9         <artifactId>single-feature-parent</artifactId>
10         <version>3.0.2</version>
11         <relativePath/>
12     </parent>
13
14     <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
15     <artifactId>odl-openflowjava-protocol</artifactId>
16     <version>0.7.0-SNAPSHOT</version>
17     <packaging>feature</packaging>
18
19     <!-- <name> formatting is used by autorelease to parse and notify projects on
20          build failure. Please do not modify this unless you have a good reason. -->
21     <name>ODL :: openflowjava :: ${project.artifactId}</name>
22
23     <properties>
24         <mdsal.version>2.5.0-SNAPSHOT</mdsal.version>
25         <mdsal.model.version>0.13.0-SNAPSHOT</mdsal.model.version>
26     </properties>
27
28
29     <dependencyManagement>
30         <dependencies>
31             <!-- This project -->
32             <dependency>
33                 <groupId>org.opendaylight.openflowplugin</groupId>
34                 <artifactId>openflowplugin-artifacts</artifactId>
35                 <version>${project.version}</version>
36                 <scope>import</scope>
37                 <type>pom</type>
38             </dependency>
39
40             <!-- Netty -->
41             <dependency>
42                 <groupId>org.opendaylight.odlparent</groupId>
43                 <artifactId>odlparent-artifacts</artifactId>
44                 <version>3.0.2</version>
45                 <scope>import</scope>
46                 <type>pom</type>
47             </dependency>
48
49             <!-- MD-SAL -->
50             <dependency>
51                 <groupId>org.opendaylight.mdsal</groupId>
52                 <artifactId>mdsal-artifacts</artifactId>
53                 <version>${mdsal.version}</version>
54                 <scope>import</scope>
55                 <type>pom</type>
56             </dependency>
57
58             <dependency>
59                 <groupId>org.opendaylight.mdsal.model</groupId>
60                 <artifactId>mdsal-model-artifacts</artifactId>
61                 <version>${mdsal.model.version}</version>
62                 <scope>import</scope>
63                 <type>pom</type>
64             </dependency>
65         </dependencies>
66     </dependencyManagement>
67
68
69     <dependencies>
70         <dependency>
71             <groupId>org.opendaylight.mdsal</groupId>
72             <artifactId>odl-mdsal-binding-base</artifactId>
73             <type>xml</type>
74             <classifier>features</classifier>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.mdsal.model</groupId>
78             <artifactId>odl-mdsal-models</artifactId>
79             <type>xml</type>
80             <classifier>features</classifier>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.odlparent</groupId>
84             <artifactId>odl-netty-4</artifactId>
85             <type>xml</type>
86             <classifier>features</classifier>
87         </dependency>
88         <!-- bundle dependencies -->
89         <dependency>
90             <groupId>${project.groupId}</groupId>
91             <artifactId>openflow-protocol-api</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>${project.groupId}</groupId>
95             <artifactId>openflow-protocol-spi</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>${project.groupId}</groupId>
99             <artifactId>openflow-protocol-impl</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>${project.groupId}</groupId>
103             <artifactId>openflowjava-util</artifactId>
104         </dependency>
105         <!-- config files -->
106         <dependency>
107             <groupId>${project.groupId}</groupId>
108             <artifactId>openflowjava-blueprint-config</artifactId>
109             <type>xml</type>
110             <classifier>config</classifier>
111         </dependency>
112         <dependency>
113             <groupId>${project.groupId}</groupId>
114             <artifactId>openflowjava-blueprint-config</artifactId>
115             <type>xml</type>
116             <classifier>legacyConfig</classifier>
117         </dependency>
118     </dependencies>
119
120 </project>