860cc5d945cc170b04e85f35477074bf90d37d62
[netvirt.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.6.0-SNAPSHOT</version>
17   </parent>
18
19   <groupId>org.opendaylight.ovsdb</groupId>
20   <artifactId>karaf</artifactId>
21   <version>1.2.0-SNAPSHOT</version>
22   <name>${project.artifactId}</name>
23   <prerequisites>
24     <maven>3.1.1</maven>
25   </prerequisites>
26   <properties>
27     <!-- uncomment the next line if you want karaf to automatically load the feature -->
28     <karaf.localFeature>odl-ovsdb-openstack</karaf.localFeature>
29   </properties>
30   <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>
31   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
32   <licenses>
33     <license>
34       <name>Eclipse Public License v1.0</name>
35       <url>http://www.eclipse.org/legal/epl-v10.html</url>
36     </license>
37   </licenses>
38   <developers>
39     <developer>
40       <name>Sam Hague</name>
41       <email>shague@gmail.com</email>
42       <url>https://github.com/shague</url>
43     </developer>
44   </developers>
45   <scm>
46     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
47     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
48     <tag>HEAD</tag>
49     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
50   </scm>
51   <dependencyManagement>
52     <dependencies>
53       <dependency>
54         <groupId>${project.groupId}</groupId>
55         <artifactId>ovsdb-artifacts</artifactId>
56         <version>${project.version}</version>
57         <type>pom</type>
58         <scope>import</scope>
59       </dependency>
60       <dependency>
61         <groupId>${project.groupId}</groupId>
62         <artifactId>southbound-artifacts</artifactId>
63         <version>${project.version}</version>
64         <type>pom</type>
65         <scope>import</scope>
66       </dependency>
67     </dependencies>
68   </dependencyManagement>
69   <dependencies>
70     <dependency>
71       <!-- scope is compile so all features (there is only one) are installed
72       into startup.properties and the feature repo itself is not installed -->
73       <groupId>org.apache.karaf.features</groupId>
74       <artifactId>framework</artifactId>
75       <type>kar</type>
76     </dependency>
77
78     <dependency>
79       <groupId>${project.groupId}</groupId>
80       <artifactId>features-ovsdb</artifactId>
81       <classifier>features</classifier>
82       <type>xml</type>
83       <scope>runtime</scope>
84     </dependency>
85     <dependency>
86       <groupId>${project.groupId}</groupId>
87       <artifactId>southbound-features</artifactId>
88       <classifier>features</classifier>
89       <type>xml</type>
90       <scope>runtime</scope>
91     </dependency>
92   </dependencies>
93 </project>