Bump versions by x.(y+1).z for next dev cycle
[netvirt.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 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.9.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.netvirt</groupId>
22   <artifactId>netvirt</artifactId>
23   <version>1.5.0-SNAPSHOT</version>
24   <name>${project.artifactId}</name> <!-- Used by Sonar to set project 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   <modules>
48     <module>openstack</module>
49     <module>vpnservice</module>
50   </modules>
51
52   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
53   <build>
54     <plugins>
55       <plugin>
56         <groupId>org.apache.maven.plugins</groupId>
57         <artifactId>maven-deploy-plugin</artifactId>
58         <configuration>
59           <skip>true</skip>
60         </configuration>
61       </plugin>
62       <plugin>
63         <groupId>org.apache.maven.plugins</groupId>
64         <artifactId>maven-install-plugin</artifactId>
65         <configuration>
66           <skip>true</skip>
67         </configuration>
68       </plugin>
69     </plugins>
70   </build>
71
72   <profiles>
73     <profile>
74       <!--
75           This profile is to ensure we only build javadocs reports
76           when we plan to deploy Maven site for our project.
77       -->
78       <id>maven-site</id>
79       <activation>
80         <file>
81           <exists>${user.dir}/deploy-site.xml</exists>
82         </file>
83       </activation>
84
85       <build>
86         <plugins>
87           <plugin>
88             <groupId>org.apache.maven.plugins</groupId>
89             <artifactId>maven-javadoc-plugin</artifactId>
90             <inherited>false</inherited>
91             <executions>
92               <execution>
93                 <id>aggregate</id>
94                 <goals>
95                   <goal>aggregate</goal>
96                 </goals>
97                 <phase>package</phase>
98               </execution>
99             </executions>
100           </plugin>
101         </plugins>
102       </build>
103     </profile>
104   </profiles>
105
106   <!--
107       Maven Site Configuration
108
109       The following configuration is necessary for maven-site-plugin to
110       correctly identify the correct deployment path for OpenDaylight Maven
111       sites.
112   -->
113   <url>${odl.site.url}/${project.groupId}/${stream}/</url>
114
115   <distributionManagement>
116     <site>
117       <id>opendaylight-site</id>
118       <url>${nexus.site.url}/</url>
119     </site>
120   </distributionManagement>
121 </project>