Publish netconf-karaf artifact
[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.2-SNAPSHOT</version>
20   <packaging>pom</packaging>
21
22   <dependencyManagement>
23     <dependencies>
24       <dependency>
25         <groupId>org.opendaylight.netconf</groupId>
26         <artifactId>netconf-artifacts</artifactId>
27         <version>2.0.2-SNAPSHOT</version>
28         <type>pom</type>
29         <scope>import</scope>
30       </dependency>
31     </dependencies>
32   </dependencyManagement>
33
34   <dependencies>
35     <dependency>
36       <!-- scope is compile so all features (there is only one) are installed
37       into startup.properties and the feature repo itself is not installed -->
38       <groupId>org.apache.karaf.features</groupId>
39       <artifactId>framework</artifactId>
40       <type>kar</type>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.netconf</groupId>
44       <artifactId>features-netconf</artifactId>
45       <classifier>features</classifier>
46       <type>xml</type>
47       <scope>runtime</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.netconf</groupId>
51       <artifactId>features-netconf-connector</artifactId>
52       <classifier>features</classifier>
53       <type>xml</type>
54       <scope>runtime</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.netconf</groupId>
58       <artifactId>features-restconf</artifactId>
59       <classifier>features</classifier>
60       <type>xml</type>
61       <scope>runtime</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.netconf</groupId>
65       <artifactId>features-yanglib</artifactId>
66       <classifier>features</classifier>
67       <type>xml</type>
68       <scope>runtime</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.netconf</groupId>
72       <artifactId>features-netconf-testing</artifactId>
73       <classifier>features</classifier>
74       <type>xml</type>
75       <scope>runtime</scope>
76     </dependency>
77   </dependencies>
78
79   <scm>
80     <connection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</connection>
81     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</developerConnection>
82     <tag>HEAD</tag>
83     <url>https://git.opendaylight.org/gerrit/gitweb?p=netconf.git;a=summary</url>
84   </scm>
85 </project>