Bump versions by 0.1.0 for next dev cycle
[netvirt.git] / openstack / 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
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.netvirt</groupId>
22   <artifactId>openstack</artifactId>
23   <version>1.4.0-SNAPSHOT</version>
24   <name>${project.artifactId}</name>
25   <packaging>pom</packaging>
26   <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>
27   <licenses>
28     <license>
29       <name>Eclipse Public License v1.0</name>
30       <url>http://www.eclipse.org/legal/epl-v10.html</url>
31     </license>
32   </licenses>
33   <developers>
34     <developer>
35       <name>Sam Hague</name>
36       <email>shague@gmail.com</email>
37       <url>https://github.com/shague</url>
38     </developer>
39   </developers>
40   <scm>
41     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
42     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
43     <tag>HEAD</tag>
44     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
45   </scm>
46
47   <prerequisites>
48     <maven>3.1.1</maven>
49   </prerequisites>
50   <modules>
51     <module>commons</module>
52     <module>features</module>
53     <module>karaf</module>
54     <module>netvirt-artifacts</module>
55     <module>ovsdb-ui</module>
56     <module>utils</module>
57     <module>net-virt</module>
58     <module>net-virt-it</module>
59     <module>net-virt-providers</module>
60     <module>net-virt-sfc</module>
61     <module>sfc-translator</module>
62   </modules>
63
64   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
65   <build>
66     <plugins>
67       <plugin>
68         <groupId>org.apache.maven.plugins</groupId>
69         <artifactId>maven-deploy-plugin</artifactId>
70         <configuration>
71           <skip>true</skip>
72         </configuration>
73       </plugin>
74       <plugin>
75         <groupId>org.apache.maven.plugins</groupId>
76         <artifactId>maven-install-plugin</artifactId>
77         <configuration>
78           <skip>true</skip>
79         </configuration>
80       </plugin>
81     </plugins>
82   </build>
83
84   <!--
85       Maven Site Configuration
86
87       The following configuration is necessary for maven-site-plugin to
88       correctly identify the correct deployment path for OpenDaylight Maven
89       sites.
90   -->
91   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
92
93   <distributionManagement>
94     <site>
95       <id>opendaylight-site</id>
96       <url>${nexus.site.url}/${project.artifactId}/</url>
97     </site>
98   </distributionManagement>
99 </project>