Add SFC features to the GBP distribution.
[groupbasedpolicy.git] / distribution-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.5.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10   <artifactId>distribution-karaf</artifactId>
11   <groupId>org.opendaylight.groupbasedpolicy</groupId>
12   <version>0.2.0-SNAPSHOT</version>
13   <packaging>pom</packaging>
14   <prerequisites>
15     <maven>3.0</maven>
16   </prerequisites>
17   <properties>
18     <groupbasedpolicy.project.version>0.2.0-SNAPSHOT</groupbasedpolicy.project.version>
19     <sfc.version>0.1.0-SNAPSHOT</sfc.version>
20   </properties>
21
22   <dependencies>
23     <dependency>
24       <!-- scope is compile so all features (there is only one) are installed
25       into startup.properties and the feature repo itself is not installed -->
26       <groupId>org.apache.karaf.features</groupId>
27       <artifactId>framework</artifactId>
28       <type>kar</type>
29     </dependency>
30     
31     <!-- Project local feautures -->
32     <dependency>
33       <groupId>org.opendaylight.groupbasedpolicy</groupId>
34       <artifactId>features-groupbasedpolicy</artifactId>
35       <version>${groupbasedpolicy.project.version}</version>
36       <classifier>features</classifier>
37       <type>xml</type>
38       <scope>runtime</scope>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.sfc</groupId>
42       <artifactId>features-sfc</artifactId>
43       <version>${sfc.version}</version>
44       <classifier>features</classifier>
45       <type>xml</type>
46       <scope>runtime</scope>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.sfc</groupId>
50       <artifactId>features-sfc-sb-rest</artifactId>
51       <version>${sfc.version}</version>
52       <classifier>features</classifier>
53       <type>xml</type>
54       <scope>runtime</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.sfc</groupId>
58       <artifactId>features-sfc-ovs</artifactId>
59       <version>${sfc.version}</version>
60       <classifier>features</classifier>
61       <type>xml</type>
62       <scope>runtime</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.sfc</groupId>
66       <artifactId>features-sfcofl2</artifactId>
67       <version>${sfc.version}</version>
68       <classifier>features</classifier>
69       <type>xml</type>
70       <scope>runtime</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.sfc</groupId>
74       <artifactId>features-sfc-netconf</artifactId>
75       <version>${sfc.version}</version>
76       <classifier>features</classifier>
77       <type>xml</type>
78       <scope>runtime</scope>
79     </dependency>
80   </dependencies>
81   <scm>
82     <connection>scm:git:ssh://git.opendaylight.org:29418/groupbasedpolicy.git</connection>
83     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/groupbasedpolicy.git</developerConnection>
84     <tag>HEAD</tag>
85     <url>https://git.opendaylight.org/gerrit/gitweb?p=groupbasedpolicy.git;a=summary</url>
86   </scm>
87 </project>