Split modifications on datastore root
[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.3</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.controller</groupId>
19   <artifactId>controller-test-karaf</artifactId>
20   <version>2.0.3-SNAPSHOT</version>
21   <packaging>pom</packaging>
22
23   <dependencyManagement>
24     <dependencies>
25       <dependency>
26         <groupId>org.opendaylight.controller</groupId>
27         <artifactId>controller-artifacts</artifactId>
28         <version>${project.version}</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</artifactId>
52       <classifier>features</classifier>
53       <type>xml</type>
54       <scope>runtime</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>features-controller-experimental</artifactId>
59       <classifier>features</classifier>
60       <type>xml</type>
61       <scope>runtime</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>features-controller-testing</artifactId>
66       <classifier>features</classifier>
67       <type>xml</type>
68       <scope>runtime</scope>
69     </dependency>
70   </dependencies>
71
72   <scm>
73     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
74     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
75     <tag>HEAD</tag>
76     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
77   </scm>
78 </project>