Squashed commit of the following:
[ovsdb.git] / karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2015 Red Hat, Inc. and others. All rights reserved.
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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13   <parent>
14     <groupId>org.opendaylight.controller</groupId>
15     <artifactId>karaf-parent</artifactId>
16     <version>1.5.0-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.ovsdb</groupId>
21   <artifactId>karaf</artifactId>
22   <version>1.1.0-SNAPSHOT</version>
23   <name>${project.artifactId}</name>
24   <prerequisites>
25     <maven>3.1.1</maven>
26   </prerequisites>
27   <properties>
28     <!-- uncomment the next line if you want karaf to automatically load the feature -->
29     <karaf.localFeature>odl-ovsdb-openstack</karaf.localFeature>
30   </properties>
31   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
32   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
33   <licenses>
34     <license>
35       <name>Eclipse Public License v1.0</name>
36       <url>http://www.eclipse.org/legal/epl-v10.html</url>
37     </license>
38   </licenses>
39   <developers>
40     <developer>
41       <name>Sam Hague</name>
42       <email>shague@gmail.com</email>
43       <url>https://github.com/shague</url>
44     </developer>
45   </developers>
46   <scm>
47     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
48     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
49     <tag>HEAD</tag>
50     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
51   </scm>
52   <dependencyManagement>
53     <dependencies>
54       <dependency>
55         <groupId>${project.groupId}</groupId>
56         <artifactId>ovsdb-artifacts</artifactId>
57         <version>${project.version}</version>
58         <type>pom</type>
59         <scope>import</scope>
60       </dependency>
61       <dependency>
62         <groupId>${project.groupId}</groupId>
63         <artifactId>southbound-artifacts</artifactId>
64         <version>${project.version}</version>
65         <type>pom</type>
66         <scope>import</scope>
67       </dependency>
68     </dependencies>
69   </dependencyManagement>
70   <dependencies>
71     <dependency>
72       <!-- scope is compile so all features (there is only one) are installed
73       into startup.properties and the feature repo itself is not installed -->
74       <groupId>org.apache.karaf.features</groupId>
75       <artifactId>framework</artifactId>
76       <type>kar</type>
77     </dependency>
78
79     <dependency>
80       <groupId>${project.groupId}</groupId>
81       <artifactId>features-ovsdb</artifactId>
82       <classifier>features</classifier>
83       <type>xml</type>
84       <scope>runtime</scope>
85     </dependency>
86     <dependency>
87       <groupId>${project.groupId}</groupId>
88       <artifactId>southbound-features</artifactId>
89       <classifier>features</classifier>
90       <type>xml</type>
91       <scope>runtime</scope>
92     </dependency>
93   </dependencies>
94 </project>