Merge "OPNFLWPLUG-1046 : Migrate OFP from XML to annotation based blueprint"
[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.8.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>org.apache.aries.blueprint</groupId>
33             <artifactId>blueprint-maven-plugin-annotation</artifactId>
34             <optional>true</optional>
35         </dependency>
36     </dependencies>
37
38     <build>
39         <plugins>
40             <plugin>
41                 <groupId>org.apache.aries.blueprint</groupId>
42                 <artifactId>blueprint-maven-plugin</artifactId>
43                 <configuration>
44                     <scanPaths>
45                         <scanPath>org.opendaylight.openflowplugin.applications.arbitratorreconciliation</scanPath>
46                     </scanPaths>
47                 </configuration>
48             </plugin>
49         </plugins>
50     </build>
51 </project>