Bump versions by x.(y+1).z
[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.17.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   <modules>
18     <module>commons/parent</module>
19     <module>commons/build_tools</module>
20     <module>commons/unittest_tools</module>
21     <module>artifacts</module>
22     <module>mappingservice</module>
23     <module>features</module>
24     <module>lispflowmapping-karaf</module>
25     <module>integrationtest</module>
26   </modules>
27
28   <build>
29     <pluginManagement>
30       <plugins>
31           <plugin>
32           <!-- Downgrade javadoc plugin, as 3.1.0+ breaks with maven.compiler.release=11 + javadoc:aggregate -->
33           <artifactId>maven-javadoc-plugin</artifactId>
34           <version>3.0.1</version>
35         </plugin>
36       </plugins>
37     </pluginManagement>
38
39     <plugins>
40 <!--       <plugin>
41         In this project we want to automatically sort all poms, thus we
42              add the invocation of this plugin to the root parent. Configuration is in
43              odlparent.
44         <groupId>com.google.code.sortpom</groupId>
45         <artifactId>maven-sortpom-plugin</artifactId>
46       </plugin> -->
47       <plugin>
48         <!-- Check for coding style violations.  Configuration in odlparent. -->
49         <groupId>org.apache.maven.plugins</groupId>
50         <artifactId>maven-checkstyle-plugin</artifactId>
51       </plugin>
52     </plugins>
53   </build>
54 </project>