Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / applications / arbitratorreconciliation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <parent>
6         <artifactId>applications</artifactId>
7         <groupId>org.opendaylight.openflowplugin</groupId>
8         <version>0.8.0-SNAPSHOT</version>
9     </parent>
10     <modelVersion>4.0.0</modelVersion>
11
12     <artifactId>arbitratorreconciliation-aggregator</artifactId>
13     <groupId>org.opendaylight.openflowplugin.applications</groupId>
14     <packaging>pom</packaging>
15     <name>ODL :: openflowplugin :: ${project.artifactId}</name>
16
17     <modules>
18         <module>api</module>
19         <module>impl</module>
20     </modules>
21
22     <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
23     <build>
24         <plugins>
25             <plugin>
26                 <groupId>org.apache.maven.plugins</groupId>
27                 <artifactId>maven-deploy-plugin</artifactId>
28                 <configuration>
29                     <skip>true</skip>
30                 </configuration>
31             </plugin>
32             <plugin>
33                 <groupId>org.apache.maven.plugins</groupId>
34                 <artifactId>maven-install-plugin</artifactId>
35                 <configuration>
36                     <skip>true</skip>
37                 </configuration>
38             </plugin>
39         </plugins>
40     </build>
41
42 </project>