Merge "Make applications/pom.xml an aggregator"
[openflowplugin.git] / applications / of-switch-config-pusher / pom.xml
1 <?xml version="1.0"?>
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     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.opendaylight.openflowplugin</groupId>
6         <artifactId>openflowplugin-parent</artifactId>
7         <version>0.10.0-SNAPSHOT</version>
8         <relativePath>../../parent</relativePath>
9     </parent>
10
11     <groupId>org.opendaylight.openflowplugin.applications</groupId>
12     <artifactId>of-switch-config-pusher</artifactId>
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.opendaylight.openflowplugin</groupId>
18             <artifactId>openflowplugin-api</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>org.opendaylight.mdsal</groupId>
22             <artifactId>mdsal-binding-api</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.opendaylight.controller.model</groupId>
26             <artifactId>model-inventory</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.openflowplugin.model</groupId>
30             <artifactId>model-flow-service</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.openflowplugin</groupId>
34             <artifactId>openflowplugin-common</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.openflowplugin.applications</groupId>
38             <artifactId>device-ownership-service</artifactId>
39             <version>${project.version}</version>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.infrautils</groupId>
43             <artifactId>infrautils-util</artifactId>
44             <version>${infrautils.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>javax.inject</groupId>
48             <artifactId>javax.inject</artifactId>
49             <optional>true</optional>
50         </dependency>
51         <dependency>
52             <groupId>javax.annotation</groupId>
53             <artifactId>javax.annotation-api</artifactId>
54             <optional>true</optional>
55         </dependency>
56         <dependency>
57             <groupId>org.apache.aries.blueprint</groupId>
58             <artifactId>blueprint-maven-plugin-annotation</artifactId>
59             <optional>true</optional>
60         </dependency>
61     </dependencies>
62
63     <build>
64         <plugins>
65             <plugin>
66                 <groupId>org.apache.aries.blueprint</groupId>
67                 <artifactId>blueprint-maven-plugin</artifactId>
68                 <configuration>
69                     <scanPaths>
70                         <scanPath>org.opendaylight.openflowplugin.openflow.ofswitch.config</scanPath>
71                     </scanPaths>
72                 </configuration>
73             </plugin>
74         </plugins>
75     </build>
76 </project>