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