Eliminate unneeded version specifications
[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>5.0.1</version>
15     <relativePath/>
16   </parent>
17   <groupId>org.opendaylight.netconf</groupId>
18   <artifactId>netconf-karaf</artifactId>
19   <version>1.11.0-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>1.8.0-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   </dependencies>
71
72   <build>
73     <plugins>
74       <plugin>
75         <groupId>org.apache.maven.plugins</groupId>
76         <artifactId>maven-deploy-plugin</artifactId>
77         <configuration>
78           <skip>true</skip>
79         </configuration>
80       </plugin>
81       <plugin>
82         <groupId>org.apache.maven.plugins</groupId>
83         <artifactId>maven-install-plugin</artifactId>
84         <configuration>
85           <skip>true</skip>
86         </configuration>
87       </plugin>
88     </plugins>
89   </build>
90
91   <scm>
92     <connection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</connection>
93     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</developerConnection>
94     <tag>HEAD</tag>
95     <url>https://git.opendaylight.org/gerrit/gitweb?p=netconf.git;a=summary</url>
96   </scm>
97 </project>