79a8d458a1822e7eaa522e2765f5151cc4b407bd
[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>9.0.2</version>
15     <relativePath/>
16   </parent>
17   <groupId>org.opendaylight.netconf</groupId>
18   <artifactId>netconf-karaf</artifactId>
19   <version>2.0.3-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>4.0.1</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>2.0.3-SNAPSHOT</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39     </dependencies>
40   </dependencyManagement>
41
42   <dependencies>
43     <dependency>
44       <!-- scope is compile so all features (there is only one) are installed
45       into startup.properties and the feature repo itself is not installed -->
46       <groupId>org.apache.karaf.features</groupId>
47       <artifactId>framework</artifactId>
48       <type>kar</type>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>features-controller-testing</artifactId>
53       <classifier>features</classifier>
54       <type>xml</type>
55       <scope>runtime</scope>
56     </dependency>
57
58     <dependency>
59       <groupId>org.opendaylight.netconf</groupId>
60       <artifactId>features-netconf</artifactId>
61       <classifier>features</classifier>
62       <type>xml</type>
63       <scope>runtime</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.netconf</groupId>
67       <artifactId>features-netconf-connector</artifactId>
68       <classifier>features</classifier>
69       <type>xml</type>
70       <scope>runtime</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.netconf</groupId>
74       <artifactId>features-restconf</artifactId>
75       <classifier>features</classifier>
76       <type>xml</type>
77       <scope>runtime</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.netconf</groupId>
81       <artifactId>features-yanglib</artifactId>
82       <classifier>features</classifier>
83       <type>xml</type>
84       <scope>runtime</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.netconf</groupId>
88       <artifactId>features-netconf-testing</artifactId>
89       <classifier>features</classifier>
90       <type>xml</type>
91       <scope>runtime</scope>
92     </dependency>
93   </dependencies>
94
95   <scm>
96     <connection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</connection>
97     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</developerConnection>
98     <tag>HEAD</tag>
99     <url>https://git.opendaylight.org/gerrit/gitweb?p=netconf.git;a=summary</url>
100   </scm>
101 </project>