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