Merge "Use QueuedNotificationManager for port message processing"
[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.10.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         </dependency>
20         <dependency>
21             <groupId>org.opendaylight.serviceutils</groupId>
22             <artifactId>upgrade</artifactId>
23             <version>${serviceutils.version}</version>
24         </dependency>
25         <dependency>
26             <groupId>javax.inject</groupId>
27             <artifactId>javax.inject</artifactId>
28             <optional>true</optional>
29         </dependency>
30         <dependency>
31             <groupId>javax.annotation</groupId>
32             <artifactId>javax.annotation-api</artifactId>
33             <optional>true</optional>
34         </dependency>
35         <dependency>
36             <groupId>org.apache.aries.blueprint</groupId>
37             <artifactId>blueprint-maven-plugin-annotation</artifactId>
38             <optional>true</optional>
39         </dependency>
40     </dependencies>
41
42     <build>
43         <plugins>
44             <plugin>
45                 <groupId>org.apache.aries.blueprint</groupId>
46                 <artifactId>blueprint-maven-plugin</artifactId>
47                 <configuration>
48                     <scanPaths>
49                         <scanPath>org.opendaylight.openflowplugin.applications.arbitratorreconciliation</scanPath>
50                     </scanPaths>
51                 </configuration>
52             </plugin>
53         </plugins>
54     </build>
55 </project>