Bump versions by x.(y+1).z for next dev cycle
[netconf.git] / features / yanglib / features-yanglib / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>features-parent</artifactId>
15         <version>1.9.0-SNAPSHOT</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.netconf</groupId>
20     <artifactId>features-yanglib</artifactId>
21     <version>1.3.0-SNAPSHOT</version>
22     <packaging>jar</packaging>
23
24     <properties>
25         <controller.mdsal.version>1.6.0-SNAPSHOT</controller.mdsal.version>
26         <netconf.version>1.3.0-SNAPSHOT</netconf.version>
27         <mdsal.version>2.3.0-SNAPSHOT</mdsal.version>
28         <mdsal.model.version>0.11.0-SNAPSHOT</mdsal.model.version>
29         <restconf.version>1.6.0-SNAPSHOT</restconf.version>
30         <yangtools.version>1.2.0-SNAPSHOT</yangtools.version>
31     </properties>
32
33     <dependencyManagement>
34         <dependencies>
35             <dependency>
36                 <groupId>org.opendaylight.odlparent</groupId>
37                 <artifactId>odlparent-artifacts</artifactId>
38                 <version>1.9.0-SNAPSHOT</version>
39                 <type>pom</type>
40                 <scope>import</scope>
41             </dependency>
42             <dependency>
43                 <groupId>org.opendaylight.controller</groupId>
44                 <artifactId>mdsal-artifacts</artifactId>
45                 <version>${controller.mdsal.version}</version>
46                 <type>pom</type>
47                 <scope>import</scope>
48             </dependency>
49             <dependency>
50                 <groupId>org.opendaylight.mdsal.model</groupId>
51                 <artifactId>mdsal-model-artifacts</artifactId>
52                 <version>${mdsal.model.version}</version>
53                 <type>pom</type>
54                 <scope>import</scope>
55             </dependency>
56             <dependency>
57                 <groupId>org.opendaylight.netconf</groupId>
58                 <artifactId>netconf-artifacts</artifactId>
59                 <version>${netconf.version}</version>
60                 <type>pom</type>
61                 <scope>import</scope>
62             </dependency>
63             <dependency>
64                 <groupId>org.opendaylight.netconf</groupId>
65                 <artifactId>restconf-artifacts</artifactId>
66                 <version>${restconf.version}</version>
67                 <type>pom</type>
68                 <scope>import</scope>
69             </dependency>
70             <dependency>
71                 <groupId>org.opendaylight.yangtools</groupId>
72                 <artifactId>yangtools-artifacts</artifactId>
73                 <version>${yangtools.version}</version>
74                 <type>pom</type>
75                 <scope>import</scope>
76             </dependency>
77         </dependencies>
78     </dependencyManagement>
79
80     <dependencies>
81         <dependency>
82             <groupId>org.opendaylight.odlparent</groupId>
83             <artifactId>features-odlparent</artifactId>
84             <classifier>features</classifier>
85             <type>xml</type>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.mdsal.model</groupId>
89             <artifactId>features-mdsal-model</artifactId>
90             <version>${mdsal.model.version}</version>
91             <classifier>features</classifier>
92             <type>xml</type>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.mdsal</groupId>
96             <artifactId>features-mdsal</artifactId>
97             <version>${mdsal.version}</version>
98             <classifier>features</classifier>
99             <type>xml</type>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.netconf</groupId>
103             <artifactId>features-restconf</artifactId>
104             <classifier>features</classifier>
105             <type>xml</type>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.yangtools</groupId>
109             <artifactId>features-yangtools</artifactId>
110             <classifier>features</classifier>
111             <type>xml</type>
112         </dependency>
113         <dependency>
114             <groupId>${project.groupId}</groupId>
115             <artifactId>ietf-netconf-yang-library</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>${project.groupId}</groupId>
119             <artifactId>yanglib</artifactId>
120         </dependency>
121     </dependencies>
122
123     <scm>
124         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
125         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
126         <tag>HEAD</tag>
127         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
128     </scm>
129 </project>