Bump versions by 0.1.0 for next dev cycle
[ovsdb.git] / southbound / southbound-artifacts / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2014, 2016 Cisco Systems, 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
10 <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">
11
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.odlparent</groupId>
16     <artifactId>odlparent-lite</artifactId>
17     <version>1.8.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>southbound-artifacts</artifactId>
23   <version>1.4.0-SNAPSHOT</version>
24   <packaging>pom</packaging>
25   <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>
26   <licenses>
27     <license>
28       <name>Eclipse Public License v1.0</name>
29       <url>http://www.eclipse.org/legal/epl-v10.html</url>
30     </license>
31   </licenses>
32   <developers>
33     <developer>
34       <name>Sam Hague</name>
35       <email>shague@gmail.com</email>
36       <url>https://github.com/shague</url>
37     </developer>
38   </developers>
39   <scm>
40     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
41     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
42     <tag>HEAD</tag>
43     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
44   </scm>
45
46   <dependencyManagement>
47     <dependencies>
48       <dependency>
49         <groupId>${project.groupId}</groupId>
50         <artifactId>southbound-api</artifactId>
51         <version>${project.version}</version>
52       </dependency>
53       <dependency>
54         <groupId>${project.groupId}</groupId>
55         <artifactId>southbound-impl</artifactId>
56         <version>${project.version}</version>
57       </dependency>
58       <dependency>
59         <groupId>${project.groupId}</groupId>
60         <artifactId>southbound-features</artifactId>
61         <version>${project.version}</version>
62         <classifier>features</classifier>
63         <type>xml</type>
64       </dependency>
65     </dependencies>
66   </dependencyManagement>
67
68   <!--
69       Maven Site Configuration
70
71       The following configuration is necessary for maven-site-plugin to
72       correctly identify the correct deployment path for OpenDaylight Maven
73       sites.
74   -->
75   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
76
77   <distributionManagement>
78     <site>
79       <id>opendaylight-site</id>
80       <url>${nexus.site.url}/${project.artifactId}/</url>
81     </site>
82   </distributionManagement>
83 </project>