Bump versions by x.y.(z+1)
[alto.git] / alto-release-features / odl-alto-northbound / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Yale University and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0"
9          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.odlparent</groupId>
15     <artifactId>single-feature-parent</artifactId>
16     <version>1.8.3-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.alto</groupId>
21   <artifactId>odl-alto-northbound</artifactId>
22   <version>0.4.3-SNAPSHOT</version>
23   <packaging>feature</packaging>
24
25   <name>OpenDaylight :: alto :: Northbound</name>
26
27   <properties>
28     <mdsal.model.groupId>org.opendaylight.mdsal.model</mdsal.model.groupId>
29     <mdsal.groupId>org.opendaylight.controller</mdsal.groupId>
30     <restconf.groupId>org.opendaylight.netconf</restconf.groupId>
31     <mdsal.model.version>0.10.3-SNAPSHOT</mdsal.model.version>
32     <mdsal.version>1.5.3-SNAPSHOT</mdsal.version>
33     <restconf.version>1.5.3-SNAPSHOT</restconf.version>
34     <yangtools.version>1.1.3-SNAPSHOT</yangtools.version>
35   </properties>
36
37   <dependencyManagement>
38     <dependencies>
39       <dependency>
40         <groupId>org.opendaylight.yangtools</groupId>
41         <artifactId>yangtools-artifacts</artifactId>
42         <version>${yangtools.version}</version>
43         <type>pom</type>
44         <scope>import</scope>
45       </dependency>
46     </dependencies>
47   </dependencyManagement>
48
49   <dependencies>
50     <dependency>
51       <groupId>${restconf.groupId}</groupId>
52       <artifactId>odl-restconf</artifactId>
53       <version>${restconf.version}</version>
54       <type>xml</type>
55       <classifier>features</classifier>
56     </dependency>
57     <dependency>
58       <groupId>${mdsal.model.groupId}</groupId>
59       <artifactId>odl-mdsal-models</artifactId>
60       <version>${mdsal.model.version}</version>
61       <type>xml</type>
62       <classifier>features</classifier>
63     </dependency>
64     <dependency>
65       <groupId>${mdsal.groupId}</groupId>
66       <artifactId>odl-mdsal-broker</artifactId>
67       <version>${mdsal.version}</version>
68       <type>xml</type>
69       <classifier>features</classifier>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.alto.core</groupId>
73       <artifactId>alto-northbound-api</artifactId>
74       <version>${project.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.alto.core</groupId>
78       <artifactId>alto-northbound-impl</artifactId>
79       <version>${project.version}</version>
80     </dependency>
81   </dependencies>
82 </project>