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