a350e3529a5989c5c64f9195eaafea7873610a33
[controller.git] / karaf / opendaylight-karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>karaf-parent</artifactId>
7     <version>1.8.0-SNAPSHOT</version>
8     <relativePath>../karaf-parent</relativePath>
9   </parent>
10   <artifactId>distribution.opendaylight-karaf</artifactId>
11   <packaging>pom</packaging>
12
13   <dependencies>
14     <dependency>
15       <!-- scope is compile so all features (there is only one) are installed
16                  into startup.properties and the feature repo itself is not installed -->
17       <groupId>org.apache.karaf.features</groupId>
18       <artifactId>framework</artifactId>
19       <type>kar</type>
20     </dependency>
21
22     <!--
23           controller provided features:
24           Note: Nothing should go here that is not locked
25           down with testing... ie, no broken feature repos
26     -->
27
28     <!-- MD-SAL Related Features -->
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>features-mdsal</artifactId>
32       <version>1.5.0-SNAPSHOT</version>
33       <classifier>features</classifier>
34       <type>xml</type>
35       <scope>runtime</scope>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>features-extras</artifactId>
40       <version>${project.version}</version>
41       <classifier>features</classifier>
42       <type>xml</type>
43       <scope>runtime</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.mdsal</groupId>
47       <artifactId>features-mdsal</artifactId>
48       <version>2.2.0-SNAPSHOT</version>
49       <classifier>features</classifier>
50       <type>xml</type>
51       <scope>runtime</scope>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.mdsal.model</groupId>
55       <artifactId>features-mdsal-model</artifactId>
56       <version>0.10.0-SNAPSHOT</version>
57       <classifier>features</classifier>
58       <type>xml</type>
59       <scope>runtime</scope>
60     </dependency>
61
62   </dependencies>
63
64   <scm>
65     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
66     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
67     <tag>HEAD</tag>
68     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
69   </scm>
70 </project>