Add javax.annotation-api dependencies
[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.8.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.controller</groupId>
19             <artifactId>sal-binding-api</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.opendaylight.controller</groupId>
23             <artifactId>sal-binding-broker-impl</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.controller.model</groupId>
27             <artifactId>model-inventory</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.openflowplugin.model</groupId>
31             <artifactId>model-flow-service</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.openflowplugin</groupId>
35             <artifactId>openflowplugin-common</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.openflowplugin.applications</groupId>
39             <artifactId>device-ownership-service</artifactId>
40             <version>${project.version}</version>
41         </dependency>
42         <dependency>
43           <groupId>org.opendaylight.infrautils</groupId>
44           <artifactId>infrautils-util</artifactId>
45           <version>${infrautils.version}</version>
46       </dependency>
47         <dependency>
48             <groupId>org.mockito</groupId>
49             <artifactId>mockito-core</artifactId>
50             <scope>test</scope>
51         </dependency>
52         <dependency>
53             <groupId>junit</groupId>
54             <artifactId>junit</artifactId>
55             <scope>test</scope>
56         </dependency>
57         <dependency>
58             <groupId>javax.inject</groupId>
59             <artifactId>javax.inject</artifactId>
60             <optional>true</optional>
61         </dependency>
62         <dependency>
63             <groupId>javax.annotation</groupId>
64             <artifactId>javax.annotation-api</artifactId>
65             <optional>true</optional>
66         </dependency>
67         <dependency>
68             <groupId>org.apache.aries.blueprint</groupId>
69             <artifactId>blueprint-maven-plugin-annotation</artifactId>
70             <optional>true</optional>
71         </dependency>
72     </dependencies>
73
74     <build>
75         <plugins>
76             <plugin>
77                 <groupId>org.apache.aries.blueprint</groupId>
78                 <artifactId>blueprint-maven-plugin</artifactId>
79                 <configuration>
80                     <scanPaths>
81                         <scanPath>org.opendaylight.openflowplugin.openflow.ofswitch.config</scanPath>
82                     </scanPaths>
83                 </configuration>
84             </plugin>
85         </plugins>
86     </build>
87 </project>