Bump versions to 4.0.1-SNAPSHOT
[netconf.git] / karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. 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   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>karaf4-parent</artifactId>
14     <version>11.0.0</version>
15     <relativePath/>
16   </parent>
17   <groupId>org.opendaylight.netconf</groupId>
18   <artifactId>netconf-karaf</artifactId>
19   <version>4.0.1-SNAPSHOT</version>
20   <packaging>pom</packaging>
21
22   <dependencyManagement>
23     <dependencies>
24       <dependency>
25         <groupId>org.opendaylight.controller</groupId>
26         <artifactId>controller-artifacts</artifactId>
27         <version>6.0.0</version>
28         <type>pom</type>
29         <scope>import</scope>
30       </dependency>
31
32       <dependency>
33         <groupId>org.opendaylight.netconf</groupId>
34         <artifactId>netconf-artifacts</artifactId>
35         <version>4.0.1-SNAPSHOT</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39
40       <dependency>
41         <groupId>org.opendaylight.infrautils</groupId>
42         <artifactId>infrautils-artifacts</artifactId>
43         <version>4.0.0</version>
44         <type>pom</type>
45         <scope>import</scope>
46       </dependency>
47     </dependencies>
48   </dependencyManagement>
49
50   <dependencies>
51     <dependency>
52       <!-- scope is compile so all features (there is only one) are installed
53       into startup.properties and the feature repo itself is not installed -->
54       <groupId>org.apache.karaf.features</groupId>
55       <artifactId>framework</artifactId>
56       <type>kar</type>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>features-controller-testing</artifactId>
61       <classifier>features</classifier>
62       <type>xml</type>
63       <scope>runtime</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.infrautils</groupId>
67       <artifactId>features-infrautils</artifactId>
68       <classifier>features</classifier>
69       <type>xml</type>
70       <scope>runtime</scope>
71     </dependency>
72
73     <dependency>
74       <groupId>org.opendaylight.netconf</groupId>
75       <artifactId>features-netconf</artifactId>
76       <classifier>features</classifier>
77       <type>xml</type>
78       <scope>runtime</scope>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.netconf</groupId>
82       <artifactId>features-netconf-connector</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.netconf</groupId>
96       <artifactId>features-yanglib</artifactId>
97       <classifier>features</classifier>
98       <type>xml</type>
99       <scope>runtime</scope>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.netconf</groupId>
103       <artifactId>features-netconf-testing</artifactId>
104       <classifier>features</classifier>
105       <type>xml</type>
106       <scope>runtime</scope>
107     </dependency>
108   </dependencies>
109
110   <scm>
111     <connection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</connection>
112     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</developerConnection>
113     <tag>HEAD</tag>
114     <url>https://git.opendaylight.org/gerrit/gitweb?p=netconf.git;a=summary</url>
115   </scm>
116 </project>