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