Bump MRI upstreams
[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>8.0.3</version>
15     <relativePath/>
16   </parent>
17   <groupId>org.opendaylight.netconf</groupId>
18   <artifactId>netconf-karaf</artifactId>
19   <version>1.13.0-SNAPSHOT</version>
20   <packaging>pom</packaging>
21
22   <properties>
23     <maven.deploy.skip>true</maven.deploy.skip>
24     <maven.install.skip>true</maven.install.skip>
25   </properties>
26
27   <dependencyManagement>
28     <dependencies>
29       <dependency>
30         <groupId>org.opendaylight.netconf</groupId>
31         <artifactId>netconf-artifacts</artifactId>
32         <version>1.10.0-SNAPSHOT</version>
33         <type>pom</type>
34         <scope>import</scope>
35       </dependency>
36     </dependencies>
37   </dependencyManagement>
38
39   <dependencies>
40     <dependency>
41       <!-- scope is compile so all features (there is only one) are installed
42       into startup.properties and the feature repo itself is not installed -->
43       <groupId>org.apache.karaf.features</groupId>
44       <artifactId>framework</artifactId>
45       <type>kar</type>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.netconf</groupId>
49       <artifactId>features-netconf</artifactId>
50       <classifier>features</classifier>
51       <type>xml</type>
52       <scope>runtime</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.netconf</groupId>
56       <artifactId>features-netconf-connector</artifactId>
57       <classifier>features</classifier>
58       <type>xml</type>
59       <scope>runtime</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.netconf</groupId>
63       <artifactId>features-restconf</artifactId>
64       <classifier>features</classifier>
65       <type>xml</type>
66       <scope>runtime</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.netconf</groupId>
70       <artifactId>features-yanglib</artifactId>
71       <classifier>features</classifier>
72       <type>xml</type>
73       <scope>runtime</scope>
74     </dependency>
75   </dependencies>
76 </project>