Merge "OPNFLWPLUG-1062 Include additional LLDP fields in liblldp"
[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>applications</artifactId>
7         <version>0.9.0-SNAPSHOT</version>
8     </parent>
9     <groupId>org.opendaylight.openflowplugin.applications</groupId>
10     <artifactId>of-switch-config-pusher</artifactId>
11     <packaging>bundle</packaging>
12     <dependencies>
13         <dependency>
14             <groupId>org.opendaylight.openflowplugin</groupId>
15             <artifactId>openflowplugin-api</artifactId>
16         </dependency>
17         <dependency>
18             <groupId>org.opendaylight.mdsal</groupId>
19             <artifactId>mdsal-binding-api</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.opendaylight.controller.model</groupId>
23             <artifactId>model-inventory</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.openflowplugin.model</groupId>
27             <artifactId>model-flow-service</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.openflowplugin</groupId>
31             <artifactId>openflowplugin-common</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.openflowplugin.applications</groupId>
35             <artifactId>device-ownership-service</artifactId>
36             <version>${project.version}</version>
37         </dependency>
38         <dependency>
39           <groupId>org.opendaylight.infrautils</groupId>
40           <artifactId>infrautils-util</artifactId>
41           <version>${infrautils.version}</version>
42       </dependency>
43         <dependency>
44             <groupId>org.mockito</groupId>
45             <artifactId>mockito-core</artifactId>
46             <scope>test</scope>
47         </dependency>
48         <dependency>
49             <groupId>junit</groupId>
50             <artifactId>junit</artifactId>
51             <scope>test</scope>
52         </dependency>
53         <dependency>
54             <groupId>javax.inject</groupId>
55             <artifactId>javax.inject</artifactId>
56             <optional>true</optional>
57         </dependency>
58         <dependency>
59             <groupId>javax.annotation</groupId>
60             <artifactId>javax.annotation-api</artifactId>
61             <optional>true</optional>
62         </dependency>
63         <dependency>
64             <groupId>org.apache.aries.blueprint</groupId>
65             <artifactId>blueprint-maven-plugin-annotation</artifactId>
66             <optional>true</optional>
67         </dependency>
68     </dependencies>
69
70     <build>
71         <plugins>
72             <plugin>
73                 <groupId>org.apache.aries.blueprint</groupId>
74                 <artifactId>blueprint-maven-plugin</artifactId>
75                 <configuration>
76                     <scanPaths>
77                         <scanPath>org.opendaylight.openflowplugin.openflow.ofswitch.config</scanPath>
78                     </scanPaths>
79                 </configuration>
80             </plugin>
81         </plugins>
82     </build>
83 </project>