Release netconf
[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.2</version>
15     <relativePath/>
16   </parent>
17   <groupId>org.opendaylight.netconf</groupId>
18   <artifactId>netconf-karaf</artifactId>
19   <version>4.0.3</version>
20   <packaging>pom</packaging>
21
22   <dependencyManagement>
23     <dependencies>
24       <dependency>
25         <groupId>org.opendaylight.infrautils</groupId>
26         <artifactId>infrautils-artifacts</artifactId>
27         <version>4.0.2</version>
28         <type>pom</type>
29         <scope>import</scope>
30       </dependency>
31       <dependency>
32         <groupId>org.opendaylight.controller</groupId>
33         <artifactId>controller-artifacts</artifactId>
34         <version>6.0.3</version>
35         <type>pom</type>
36         <scope>import</scope>
37       </dependency>
38       <dependency>
39         <groupId>org.opendaylight.netconf</groupId>
40         <artifactId>netconf-artifacts</artifactId>
41         <version>4.0.3</version>
42         <type>pom</type>
43         <scope>import</scope>
44       </dependency>
45     </dependencies>
46   </dependencyManagement>
47
48   <dependencies>
49     <dependency>
50       <!-- scope is compile so all features (there is only one) are installed
51       into startup.properties and the feature repo itself is not installed -->
52       <groupId>org.apache.karaf.features</groupId>
53       <artifactId>framework</artifactId>
54       <type>kar</type>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>features-controller-testing</artifactId>
59       <classifier>features</classifier>
60       <type>xml</type>
61       <scope>runtime</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.infrautils</groupId>
65       <artifactId>features-infrautils</artifactId>
66       <classifier>features</classifier>
67       <type>xml</type>
68       <scope>runtime</scope>
69     </dependency>
70
71     <dependency>
72       <groupId>org.opendaylight.netconf</groupId>
73       <artifactId>features-netconf</artifactId>
74       <classifier>features</classifier>
75       <type>xml</type>
76       <scope>runtime</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.netconf</groupId>
80       <artifactId>features-netconf-connector</artifactId>
81       <classifier>features</classifier>
82       <type>xml</type>
83       <scope>runtime</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.netconf</groupId>
87       <artifactId>features-restconf</artifactId>
88       <classifier>features</classifier>
89       <type>xml</type>
90       <scope>runtime</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.netconf</groupId>
94       <artifactId>features-yanglib</artifactId>
95       <classifier>features</classifier>
96       <type>xml</type>
97       <scope>runtime</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.netconf</groupId>
101       <artifactId>features-netconf-testing</artifactId>
102       <classifier>features</classifier>
103       <type>xml</type>
104       <scope>runtime</scope>
105     </dependency>
106   </dependencies>
107
108   <scm>
109     <connection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</connection>
110     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</developerConnection>
111     <tag>HEAD</tag>
112     <url>https://git.opendaylight.org/gerrit/gitweb?p=netconf.git;a=summary</url>
113   </scm>
114 </project>