Bump versions by x.y.(z+1)
[alto.git] / alto-basic / simple-ird / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2017 SNLab 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 INTERNAL
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" 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
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.odlparent</groupId>
16     <artifactId>features-parent</artifactId>
17     <version>1.8.3-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.alto.basic</groupId>
22   <artifactId>alto-simple-ird-features</artifactId>
23   <version>0.4.3-SNAPSHOT</version>
24   <!-- <name> formatting is used by autorelease to parse and notify projects on
25        build failure. Please do not modify this unless you have a good reason. -->
26   <name>ODL :: alto :: ${project.artifactId}</name>
27
28   <properties>
29     <mdsal.model.version>0.10.3-SNAPSHOT</mdsal.model.version>
30     <mdsal.version>1.5.3-SNAPSHOT</mdsal.version>
31     <restconf.version>1.5.3-SNAPSHOT</restconf.version>
32     <yangtools.version>1.1.3-SNAPSHOT</yangtools.version>
33     <dluxapps.version>0.5.3-SNAPSHOT</dluxapps.version>
34     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
35   </properties>
36
37   <dependencyManagement>
38     <dependencies>
39       <!-- project specific dependencies -->
40       <dependency>
41         <groupId>org.opendaylight.controller</groupId>
42         <artifactId>mdsal-artifacts</artifactId>
43         <version>${mdsal.version}</version>
44         <type>pom</type>
45         <scope>import</scope>
46       </dependency>
47       <dependency>
48         <groupId>org.opendaylight.netconf</groupId>
49         <artifactId>restconf-artifacts</artifactId>
50         <version>${restconf.version}</version>
51         <type>pom</type>
52         <scope>import</scope>
53       </dependency>
54       <dependency>
55         <groupId>org.opendaylight.yangtools</groupId>
56         <artifactId>yangtools-artifacts</artifactId>
57         <version>${yangtools.version}</version>
58         <type>pom</type>
59         <scope>import</scope>
60       </dependency>
61     </dependencies>
62   </dependencyManagement>
63
64   <dependencies>
65     <dependency>
66       <groupId>org.opendaylight.yangtools</groupId>
67       <artifactId>features-yangtools</artifactId>
68       <classifier>features</classifier>
69       <type>xml</type>
70       <scope>runtime</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.mdsal.model</groupId>
74       <artifactId>features-mdsal-model</artifactId>
75       <version>${mdsal.model.version}</version>
76       <classifier>features</classifier>
77       <type>xml</type>
78       <scope>runtime</scope>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>features-mdsal</artifactId>
83       <classifier>features</classifier>
84       <type>xml</type>
85       <scope>runtime</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.netconf</groupId>
89       <artifactId>features-restconf</artifactId>
90       <classifier>features</classifier>
91       <type>xml</type>
92       <scope>runtime</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.dluxapps</groupId>
96       <artifactId>features-dluxapps</artifactId>
97       <classifier>features</classifier>
98       <version>${dluxapps.version}</version>
99       <type>xml</type>
100       <scope>runtime</scope>
101     </dependency>
102     <dependency>
103       <groupId>${project.groupId}</groupId>
104       <artifactId>alto-simple-ird-impl</artifactId>
105       <version>${project.version}</version>
106     </dependency>
107     <dependency>
108       <groupId>${project.groupId}</groupId>
109       <artifactId>alto-simple-ird-api</artifactId>
110       <version>${project.version}</version>
111     </dependency>
112   </dependencies>
113 </project>