34e4eede2bab16bd8dfb9b86848409794e1fd43a
[ovsdb.git] / southbound / southbound-karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2014 Cisco Systems and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <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">
9   <parent>
10     <groupId>org.opendaylight.controller</groupId>
11     <artifactId>karaf-parent</artifactId>
12     <version>1.7.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <modelVersion>4.0.0</modelVersion>
16   <groupId>org.opendaylight.ovsdb</groupId>
17   <artifactId>southbound-karaf</artifactId>
18   <version>1.3.0-SNAPSHOT</version>
19   <name>${project.artifactId}</name>
20   <prerequisites>
21     <maven>3.1.1</maven>
22   </prerequisites>
23   <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>
24   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
25   <licenses>
26     <license>
27       <name>Eclipse Public License v1.0</name>
28       <url>http://www.eclipse.org/legal/epl-v10.html</url>
29     </license>
30   </licenses>
31   <developers>
32     <developer>
33       <name>Sam Hague</name>
34       <email>shague@gmail.com</email>
35       <url>https://github.com/shague</url>
36     </developer>
37   </developers>
38   <scm>
39     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
40     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
41     <tag>HEAD</tag>
42     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
43   </scm>
44   <properties>
45     <karaf.localFeature>odl-ovsdb-southbound-impl-ui</karaf.localFeature>
46   </properties>
47   <dependencyManagement>
48     <dependencies>
49       <dependency>
50         <groupId>${project.groupId}</groupId>
51         <artifactId>southbound-artifacts</artifactId>
52         <version>${project.version}</version>
53         <type>pom</type>
54         <scope>import</scope>
55       </dependency>
56     </dependencies>
57   </dependencyManagement>
58   <dependencies>
59     <dependency>
60       <!-- scope is compile so all features (there is only one) are installed
61       into startup.properties and the feature repo itself is not installed -->
62       <groupId>org.apache.karaf.features</groupId>
63       <artifactId>framework</artifactId>
64       <type>kar</type>
65     </dependency>
66
67     <dependency>
68       <groupId>${project.groupId}</groupId>
69       <artifactId>southbound-features</artifactId>
70       <classifier>features</classifier>
71       <type>xml</type>
72       <scope>runtime</scope>
73     </dependency>
74   </dependencies>
75
76   <build>
77     <plugins>
78       <!-- DO NOT deploy the karaf artifact -->
79       <plugin>
80         <groupId>org.apache.maven.plugins</groupId>
81         <artifactId>maven-deploy-plugin</artifactId>
82         <configuration>
83           <skip>true</skip>
84         </configuration>
85       </plugin>
86     </plugins>
87   </build>
88 </project>