Merge "groupbased policy ui-rework"
[groupbasedpolicy.git] / distribution-karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. 
3   This program and the accompanying materials are made available under the 
4   terms of the Eclipse Public License v1.0 which accompanies this distribution, 
5   and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8   <modelVersion>4.0.0</modelVersion>
9
10   <parent>
11     <groupId>org.opendaylight.controller</groupId>
12     <artifactId>karaf-parent</artifactId>
13     <version>1.6.0-SNAPSHOT</version>
14     <relativePath />
15   </parent>
16
17   <artifactId>distribution-karaf</artifactId>
18   <groupId>org.opendaylight.groupbasedpolicy</groupId>
19   <version>0.3.0-SNAPSHOT</version>
20   <packaging>pom</packaging>
21
22   <prerequisites>
23     <maven>3.0</maven>
24   </prerequisites>
25
26   <properties>
27     <groupbasedpolicy.project.version>0.3.0-SNAPSHOT</groupbasedpolicy.project.version>
28     <sfc.version>0.2.0-SNAPSHOT</sfc.version>
29   </properties>
30
31   <dependencies>
32     <dependency>
33       <!-- scope is compile so all features (there is only one) are installed 
34         into startup.properties and the feature repo itself is not installed -->
35       <groupId>org.apache.karaf.features</groupId>
36       <artifactId>framework</artifactId>
37       <type>kar</type>
38     </dependency>
39
40     <!-- Project local feautures -->
41     <dependency>
42       <groupId>org.opendaylight.groupbasedpolicy</groupId>
43       <artifactId>features-groupbasedpolicy</artifactId>
44       <version>${groupbasedpolicy.project.version}</version>
45       <classifier>features</classifier>
46       <type>xml</type>
47       <scope>runtime</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.sfc</groupId>
51       <artifactId>features-sfc</artifactId>
52       <version>${sfc.version}</version>
53       <classifier>features</classifier>
54       <type>xml</type>
55       <scope>runtime</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.sfc</groupId>
59       <artifactId>features-sfc-sb-rest</artifactId>
60       <version>${sfc.version}</version>
61       <classifier>features</classifier>
62       <type>xml</type>
63       <scope>runtime</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.sfc</groupId>
67       <artifactId>features-sfc-ovs</artifactId>
68       <version>${sfc.version}</version>
69       <classifier>features</classifier>
70       <type>xml</type>
71       <scope>runtime</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.sfc</groupId>
75       <artifactId>features-sfcofl2</artifactId>
76       <version>${sfc.version}</version>
77       <classifier>features</classifier>
78       <type>xml</type>
79       <scope>runtime</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.sfc</groupId>
83       <artifactId>features-sfc-netconf</artifactId>
84       <version>${sfc.version}</version>
85       <classifier>features</classifier>
86       <type>xml</type>
87       <scope>runtime</scope>
88     </dependency>
89   </dependencies>
90   <scm>
91     <connection>scm:git:ssh://git.opendaylight.org:29418/groupbasedpolicy.git</connection>
92     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/groupbasedpolicy.git</developerConnection>
93     <tag>HEAD</tag>
94     <url>https://git.opendaylight.org/gerrit/gitweb?p=groupbasedpolicy.git;a=summary</url>
95   </scm>
96 </project>