Clean up features-config-netty
[controller.git] / karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2014, 2018 Cisco Systems, Inc. and others.
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>7.0.1</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.controller</groupId>
19   <artifactId>distribution.opendaylight-karaf</artifactId>
20   <version>1.15.0-SNAPSHOT</version>
21   <packaging>pom</packaging>
22
23   <dependencyManagement>
24     <dependencies>
25       <dependency>
26         <groupId>org.opendaylight.controller</groupId>
27         <artifactId>mdsal-parent</artifactId>
28         <version>1.12.0-SNAPSHOT</version>
29         <type>pom</type>
30         <scope>import</scope>
31       </dependency>
32     </dependencies>
33   </dependencyManagement>
34
35   <dependencies>
36     <dependency>
37       <!-- scope is compile so all features (there is only one) are installed
38                  into startup.properties and the feature repo itself is not installed -->
39       <groupId>org.apache.karaf.features</groupId>
40       <artifactId>framework</artifactId>
41       <type>kar</type>
42     </dependency>
43
44     <!--
45           controller provided features:
46           Note: Nothing should go here that is not locked
47           down with testing... ie, no broken feature repos
48     -->
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>features-controller-experimental</artifactId>
52       <classifier>features</classifier>
53       <type>xml</type>
54       <scope>runtime</scope>
55     </dependency>
56
57     <!-- MD-SAL Related Features -->
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>features-mdsal</artifactId>
61       <classifier>features</classifier>
62       <type>xml</type>
63       <scope>runtime</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>features-extras</artifactId>
68       <classifier>features</classifier>
69       <version>${project.version}</version>
70       <type>xml</type>
71       <scope>runtime</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.mdsal</groupId>
75       <artifactId>features-mdsal</artifactId>
76       <classifier>features</classifier>
77       <type>xml</type>
78       <scope>runtime</scope>
79     </dependency>
80   </dependencies>
81
82   <scm>
83     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
84     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
85     <tag>HEAD</tag>
86     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
87   </scm>
88 </project>