Bump versions by x.(y+1).z for next dev cycle
[neutron.git] / features / production / odl-neutron-hostconfig-vpp / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2018 Intel Corporation and others. All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10     <modelVersion>4.0.0</modelVersion>
11
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>single-feature-parent</artifactId>
15         <version>3.1.3</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.neutron</groupId>
20     <artifactId>odl-neutron-hostconfig-vpp</artifactId>
21     <version>0.12.0-SNAPSHOT</version>
22     <packaging>feature</packaging>
23     <name>OpenDaylight :: Neutron :: Hostconfig :: VPP</name>
24
25     <properties>
26         <netconf.version>1.6.0-SNAPSHOT</netconf.version>
27         <explicitFeatureDependencies>true</explicitFeatureDependencies>
28     </properties>
29
30     <dependencyManagement>
31         <dependencies>
32             <dependency>
33                 <groupId>org.opendaylight.netconf</groupId>
34                 <artifactId>netconf-artifacts</artifactId>
35                 <version>${netconf.version}</version>
36                 <type>pom</type>
37                 <scope>import</scope>
38             </dependency>
39         </dependencies>
40     </dependencyManagement>
41
42     <dependencies>
43         <dependency>
44             <groupId>org.opendaylight.netconf</groupId>
45             <artifactId>odl-netconf-clustered-topology</artifactId>
46             <version>${netconf.version}</version>
47             <type>xml</type>
48             <classifier>features</classifier>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.netconf</groupId>
52             <artifactId>odl-netconf-connector</artifactId>
53             <version>${netconf.version}</version>
54             <type>xml</type>
55             <classifier>features</classifier>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.netconf</groupId>
59             <artifactId>odl-netconf-tcp</artifactId>
60             <version>${netconf.version}</version>
61             <type>xml</type>
62             <classifier>features</classifier>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>odl-neutron-spi</artifactId>
67             <type>xml</type>
68             <classifier>features</classifier>
69             <version>${project.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>neutron-hostconfig-utils</artifactId>
74             <version>${project.version}</version>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>neutron-hostconfig-vpp</artifactId>
79             <version>${project.version}</version>
80         </dependency>
81         <dependency>
82             <!-- finalname="/etc/org.opendaylight.vbd.impl.startup.cfg" -->
83             <groupId>${project.groupId}</groupId>
84             <artifactId>neutron-hostconfig-vpp</artifactId>
85             <version>${project.version}</version>
86             <type>cfg</type>
87             <classifier>config</classifier>
88         </dependency>
89     </dependencies>
90
91 </project>