Bump versions by x.(y+1).z for next dev cycle
[netconf.git] / restconf / restconf-common / pom.xml
1 <!--
2   ~ Copyright (c) 2017 Pantheon Technologies s.r.o. and others.  All rights reserved.
3   ~
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
7   -->
8
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.mdsal</groupId>
16     <artifactId>binding-parent</artifactId>
17     <version>0.13.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.netconf</groupId>
22   <artifactId>restconf-common</artifactId>
23   <version>1.8.0-SNAPSHOT</version>
24   <packaging>bundle</packaging>
25   <name>${project.artifactId}</name>
26
27   <dependencyManagement>
28     <dependencies>
29       <dependency>
30         <groupId>org.opendaylight.controller</groupId>
31         <artifactId>mdsal-artifacts</artifactId>
32         <version>1.8.0-SNAPSHOT</version>
33         <type>pom</type>
34         <scope>import</scope>
35       </dependency>
36     </dependencies>
37   </dependencyManagement>
38
39   <dependencies>
40     <dependency>
41       <groupId>org.opendaylight.yangtools</groupId>
42       <artifactId>yang-data-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>yang-data-impl</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.yangtools</groupId>
50       <artifactId>yang-model-util</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.yangtools</groupId>
54       <artifactId>yang-parser-impl</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.yangtools</groupId>
58       <artifactId>yang-test-util</artifactId>
59     </dependency>
60
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>sal-core-api</artifactId>
64     </dependency>
65
66     <dependency>
67       <groupId>org.jboss.resteasy</groupId>
68       <artifactId>jaxrs-api</artifactId>
69       <scope>provided</scope>
70     </dependency>
71
72     <dependency>
73       <groupId>org.mockito</groupId>
74       <artifactId>mockito-core</artifactId>
75       <scope>test</scope>
76     </dependency>
77   </dependencies>
78 </project>