Bump versions by x.(y+1).z for next dev cycle
[lispflowmapping.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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/maven-v4_0_0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.lispflowmapping</groupId>
7     <artifactId>lispflowmapping-commons</artifactId>
8     <version>1.7.0-SNAPSHOT</version>
9     <relativePath>commons/parent</relativePath>
10   </parent>
11
12   <artifactId>lispflowmapping-all</artifactId>
13   <packaging>pom</packaging>
14   <!-- Used by Sonar to set project name -->
15   <name>lispflowmapping</name>
16
17   <prerequisites>
18     <maven>3.1.1</maven>
19   </prerequisites>
20
21   <modules>
22     <module>commons/parent</module>
23     <module>commons/build_tools</module>
24     <module>commons/unittest_tools</module>
25     <module>artifacts</module>
26     <module>mappingservice</module>
27     <module>ui</module>
28     <module>features</module>
29     <module>lispflowmapping-karaf</module>
30     <module>integrationtest</module>
31   </modules>
32
33   <build>
34     <plugins>
35 <!--       <plugin>
36         In this project we want to automatically sort all poms, thus we
37              add the invocation of this plugin to the root parent. Configuration is in
38              odlparent.
39         <groupId>com.google.code.sortpom</groupId>
40         <artifactId>maven-sortpom-plugin</artifactId>
41       </plugin> -->
42       <plugin>
43         <!-- Check for coding style violations.  Configuration in odlparent. -->
44         <groupId>org.apache.maven.plugins</groupId>
45         <artifactId>maven-checkstyle-plugin</artifactId>
46       </plugin>
47     </plugins>
48   </build>
49
50   <profiles>
51     <profile>
52       <!--
53           This profile is to ensure we only build javadocs reports
54           when we plan to deploy Maven site for our project.
55       -->
56       <id>maven-site</id>
57       <activation>
58         <file>
59           <exists>${user.dir}/deploy-site.xml</exists>
60         </file>
61       </activation>
62
63       <build>
64         <plugins>
65           <plugin>
66             <groupId>org.apache.maven.plugins</groupId>
67             <artifactId>maven-javadoc-plugin</artifactId>
68             <inherited>false</inherited>
69             <executions>
70               <execution>
71                 <id>aggregate</id>
72                 <goals>
73                   <goal>aggregate</goal>
74                 </goals>
75                 <phase>package</phase>
76               </execution>
77             </executions>
78           </plugin>
79         </plugins>
80       </build>
81     </profile>
82   </profiles>
83 </project>