34f7249a57c4949a6ae76a05a159f5fad80245f6
[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>4.0.10</version>
15     <relativePath/>
16   </parent>
17   <groupId>org.opendaylight.netconf</groupId>
18   <artifactId>netconf-karaf</artifactId>
19   <version>1.9.1-SNAPSHOT</version>
20   <packaging>pom</packaging>
21   <properties>
22     <netconf.version>1.6.1-SNAPSHOT</netconf.version>
23     <restconf.version>1.9.1-SNAPSHOT</restconf.version>
24   </properties>
25
26   <dependencies>
27     <dependency>
28       <!-- scope is compile so all features (there is only one) are installed
29       into startup.properties and the feature repo itself is not installed -->
30       <groupId>org.apache.karaf.features</groupId>
31       <artifactId>framework</artifactId>
32       <type>kar</type>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.netconf</groupId>
36       <artifactId>features-netconf</artifactId>
37       <version>${netconf.version}</version>
38       <classifier>features</classifier>
39       <type>xml</type>
40       <scope>runtime</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.netconf</groupId>
44       <artifactId>features-netconf-connector</artifactId>
45       <version>${netconf.version}</version>
46       <classifier>features</classifier>
47       <type>xml</type>
48       <scope>runtime</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.netconf</groupId>
52       <artifactId>features-restconf</artifactId>
53       <version>${restconf.version}</version>
54       <classifier>features</classifier>
55       <type>xml</type>
56       <scope>runtime</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.netconf</groupId>
60       <artifactId>features-yanglib</artifactId>
61       <version>${netconf.version}</version>
62       <classifier>features</classifier>
63       <type>xml</type>
64       <scope>runtime</scope>
65     </dependency>
66   </dependencies>
67
68   <build>
69     <plugins>
70       <plugin>
71         <groupId>org.apache.maven.plugins</groupId>
72         <artifactId>maven-deploy-plugin</artifactId>
73         <configuration>
74           <skip>true</skip>
75         </configuration>
76       </plugin>
77       <plugin>
78         <groupId>org.apache.maven.plugins</groupId>
79         <artifactId>maven-install-plugin</artifactId>
80         <configuration>
81           <skip>true</skip>
82         </configuration>
83       </plugin>
84     </plugins>
85   </build>
86
87   <scm>
88     <connection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</connection>
89     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</developerConnection>
90     <tag>HEAD</tag>
91     <url>https://git.opendaylight.org/gerrit/gitweb?p=netconf.git;a=summary</url>
92   </scm>
93 </project>