Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / applications / arbitratorreconciliation / api / 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         <relativePath>../..</relativePath>
10     </parent>
11     <modelVersion>4.0.0</modelVersion>
12
13     <groupId>org.opendaylight.openflowplugin.applications</groupId>
14     <artifactId>arbitratorreconciliation-api</artifactId>
15     <packaging>bundle</packaging>
16
17     <dependencies>
18         <dependency>
19             <groupId>org.opendaylight.openflowplugin</groupId>
20             <artifactId>openflowplugin-api</artifactId>
21         </dependency>
22         <dependency>
23             <groupId>org.opendaylight.openflowplugin</groupId>
24             <artifactId>openflowplugin-extension-api</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.openflowplugin.applications</groupId>
28             <artifactId>reconciliation-framework</artifactId>
29             <version>${project.version}</version>
30         </dependency>
31     </dependencies>
32
33     <build>
34         <plugins>
35             <!-- TODO Remove this when we upgrade to odlparent with a fix for ODLPARENT-146 -->
36             <plugin>
37                 <groupId>org.codehaus.mojo</groupId>
38                 <artifactId>findbugs-maven-plugin</artifactId>
39                 <configuration>
40                     <failOnError>false</failOnError>
41                 </configuration>
42             </plugin>
43         </plugins>
44     </build>
45
46 </project>