Add javax.annotation-api dependencies
[openflowplugin.git] / applications / southbound-cli / 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     <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>southbound-cli</artifactId>
11     <packaging>bundle</packaging>
12
13     <dependencies>
14         <dependency>
15             <groupId>org.osgi</groupId>
16             <artifactId>org.osgi.core</artifactId>
17         </dependency>
18         <dependency>
19             <groupId>junit</groupId>
20             <artifactId>junit</artifactId>
21         </dependency>
22         <dependency>
23             <groupId>org.opendaylight.controller</groupId>
24             <artifactId>sal-binding-api</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.openflowplugin</groupId>
28             <artifactId>openflowplugin-common</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.openflowplugin</groupId>
32             <artifactId>openflowplugin-api</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.yangtools</groupId>
36             <artifactId>yang-common</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.controller</groupId>
40             <artifactId>sal-common-util</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.mdsal</groupId>
44             <artifactId>mdsal-singleton-common-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.openflowplugin.model</groupId>
48             <artifactId>model-flow-service</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.mockito</groupId>
52             <artifactId>mockito-core</artifactId>
53             <scope>test</scope>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.controller</groupId>
57             <artifactId>sal-binding-broker-impl</artifactId>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.controller</groupId>
62             <artifactId>sal-binding-broker-impl</artifactId>
63             <scope>test</scope>
64             <type>test-jar</type>
65         </dependency>
66         <dependency>
67             <groupId>org.apache.karaf.shell</groupId>
68             <artifactId>org.apache.karaf.shell.console</artifactId>
69             <scope>provided</scope>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.openflowplugin.applications</groupId>
73             <artifactId>forwardingrules-manager</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>javax.inject</groupId>
77             <artifactId>javax.inject</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>javax.annotation</groupId>
81             <artifactId>javax.annotation-api</artifactId>
82             <optional>true</optional>
83         </dependency>
84     </dependencies>
85
86 </project>