Bump versions to 0.20.5-SNAPSHOT
[bgpcep.git] / distribution-karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
3   This program and the accompanying materials are made available under the
4   terms of the Eclipse Public License v1.0 which accompanies this distribution,
5   and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <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">
7   <modelVersion>4.0.0</modelVersion>
8
9   <parent>
10     <groupId>org.opendaylight.odlparent</groupId>
11     <artifactId>karaf4-parent</artifactId>
12     <version>13.0.4</version>
13     <relativePath/>
14   </parent>
15
16   <groupId>org.opendaylight.bgpcep</groupId>
17   <artifactId>bgpcep-karaf</artifactId>
18   <version>0.20.5-SNAPSHOT</version>
19   <packaging>pom</packaging>
20
21   <dependencyManagement>
22     <dependencies>
23       <dependency>
24         <groupId>org.opendaylight.bgpcep</groupId>
25         <artifactId>bgpcep-parent</artifactId>
26         <version>${project.version}</version>
27         <type>pom</type>
28         <scope>import</scope>
29       </dependency>
30     </dependencies>
31   </dependencyManagement>
32
33   <dependencies>
34     <dependency>
35       <!-- scope is compile so all features (there is only one) are installed
36         into startup.properties and the feature repo itself is not installed -->
37       <groupId>org.apache.karaf.features</groupId>
38       <artifactId>framework</artifactId>
39       <type>kar</type>
40     </dependency>
41
42     <!-- Project local feautures -->
43     <dependency>
44       <groupId>org.opendaylight.bgpcep</groupId>
45       <artifactId>features-bgpcep</artifactId>
46       <classifier>features</classifier>
47       <type>xml</type>
48       <scope>runtime</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.bgpcep</groupId>
52       <artifactId>features-bgpcep-testing</artifactId>
53       <classifier>features</classifier>
54       <type>xml</type>
55       <scope>runtime</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.netconf</groupId>
59       <artifactId>features-netconf</artifactId>
60       <classifier>features</classifier>
61       <type>xml</type>
62       <scope>runtime</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.mdsal</groupId>
66       <artifactId>features-mdsal</artifactId>
67       <classifier>features</classifier>
68       <type>xml</type>
69       <scope>runtime</scope>
70     </dependency>
71
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>features-controller-testing</artifactId>
75       <classifier>features</classifier>
76       <type>xml</type>
77       <scope>runtime</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.infrautils</groupId>
81       <artifactId>features-infrautils</artifactId>
82       <classifier>features</classifier>
83       <type>xml</type>
84       <scope>runtime</scope>
85     </dependency>
86   </dependencies>
87
88     <scm>
89         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
90         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
91         <tag>HEAD</tag>
92         <url>https://git.opendaylight.org/gerrit/gitweb?p=bgpcep.git;a=summary</url>
93     </scm>
94 </project>