Migrate to odlparent 1.9.0
[ovsdb.git] / southbound / southbound-karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2014, 2016 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.odlparent</groupId>
11     <artifactId>karaf-parent</artifactId>
12     <version>1.9.0</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.5.0-SNAPSHOT</version>
19   <!-- <name> formatting is used by autorelease to parse and notify projects on
20        build failure. Please do not modify this unless you have a good reason. -->
21   <name>ODL :: ovsdb :: ${project.artifactId}</name>
22   <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>
23   <licenses>
24     <license>
25       <name>Eclipse Public License v1.0</name>
26       <url>http://www.eclipse.org/legal/epl-v10.html</url>
27     </license>
28   </licenses>
29   <developers>
30     <developer>
31       <name>Sam Hague</name>
32       <email>shague@gmail.com</email>
33       <url>https://github.com/shague</url>
34     </developer>
35   </developers>
36   <scm>
37     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
38     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
39     <tag>HEAD</tag>
40     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
41   </scm>
42   <properties>
43     <karaf.localFeature>odl-ovsdb-southbound-impl-ui</karaf.localFeature>
44   </properties>
45   <dependencyManagement>
46     <dependencies>
47       <dependency>
48         <groupId>${project.groupId}</groupId>
49         <artifactId>southbound-artifacts</artifactId>
50         <version>${project.version}</version>
51         <type>pom</type>
52         <scope>import</scope>
53       </dependency>
54     </dependencies>
55   </dependencyManagement>
56   <dependencies>
57     <dependency>
58       <!-- scope is compile so all features (there is only one) are installed
59       into startup.properties and the feature repo itself is not installed -->
60       <groupId>org.apache.karaf.features</groupId>
61       <artifactId>framework</artifactId>
62       <type>kar</type>
63     </dependency>
64
65     <dependency>
66       <groupId>${project.groupId}</groupId>
67       <artifactId>southbound-features</artifactId>
68       <classifier>features</classifier>
69       <type>xml</type>
70       <scope>runtime</scope>
71     </dependency>
72   </dependencies>
73
74   <build>
75     <plugins>
76       <!-- DO NOT deploy the karaf artifact -->
77       <plugin>
78         <groupId>org.apache.maven.plugins</groupId>
79         <artifactId>maven-deploy-plugin</artifactId>
80         <configuration>
81           <skip>true</skip>
82         </configuration>
83       </plugin>
84     </plugins>
85   </build>
86
87   <!--
88       Maven Site Configuration
89
90       The following configuration is necessary for maven-site-plugin to
91       correctly identify the correct deployment path for OpenDaylight Maven
92       sites.
93   -->
94   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
95
96   <distributionManagement>
97     <site>
98       <id>opendaylight-site</id>
99       <url>${nexus.site.url}/${project.artifactId}/</url>
100     </site>
101   </distributionManagement>
102 </project>