Bump versions by x.y.(z+1)
[openflowplugin.git] / applications / arbitratorreconciliation / impl / 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/xsd/maven-4.0.0.xsd">
3     <parent>
4         <artifactId>applications</artifactId>
5         <groupId>org.opendaylight.openflowplugin</groupId>
6         <version>0.9.0-SNAPSHOT</version>
7         <relativePath>../..</relativePath>
8     </parent>
9     <modelVersion>4.0.0</modelVersion>
10
11     <groupId>org.opendaylight.openflowplugin.applications</groupId>
12     <artifactId>arbitratorreconciliation-impl</artifactId>
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.opendaylight.openflowplugin.applications</groupId>
18             <artifactId>arbitratorreconciliation-api</artifactId>
19             <version>${project.version}</version>
20         </dependency>
21         <dependency>
22             <groupId>org.opendaylight.serviceutils</groupId>
23             <artifactId>upgrade</artifactId>
24             <version>${serviceutils.version}</version>
25         </dependency>
26         <dependency>
27             <groupId>javax.inject</groupId>
28             <artifactId>javax.inject</artifactId>
29             <optional>true</optional>
30         </dependency>
31         <dependency>
32             <groupId>javax.annotation</groupId>
33             <artifactId>javax.annotation-api</artifactId>
34             <optional>true</optional>
35         </dependency>
36         <dependency>
37             <groupId>org.apache.aries.blueprint</groupId>
38             <artifactId>blueprint-maven-plugin-annotation</artifactId>
39             <optional>true</optional>
40         </dependency>
41     </dependencies>
42
43     <build>
44         <plugins>
45             <plugin>
46                 <groupId>org.apache.aries.blueprint</groupId>
47                 <artifactId>blueprint-maven-plugin</artifactId>
48                 <configuration>
49                     <scanPaths>
50                         <scanPath>org.opendaylight.openflowplugin.applications.arbitratorreconciliation</scanPath>
51                     </scanPaths>
52                 </configuration>
53             </plugin>
54         </plugins>
55     </build>
56 </project>