Refactor NodeListener
[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>openflowplugin-parent</artifactId>
7         <version>0.18.0-SNAPSHOT</version>
8         <relativePath>../../parent</relativePath>
9     </parent>
10
11     <groupId>org.opendaylight.openflowplugin.applications</groupId>
12     <artifactId>southbound-cli</artifactId>
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <dependency>
17             <groupId>com.google.code.gson</groupId>
18             <artifactId>gson</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>com.guicedee.services</groupId>
22             <artifactId>javax.inject</artifactId>
23             <optional>true</optional>
24         </dependency>
25         <dependency>
26             <groupId>jakarta.annotation</groupId>
27             <artifactId>jakarta.annotation-api</artifactId>
28             <optional>true</optional>
29         </dependency>
30         <dependency>
31             <groupId>org.apache.karaf.shell</groupId>
32             <artifactId>org.apache.karaf.shell.console</artifactId>
33             <scope>provided</scope>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.mdsal</groupId>
37             <artifactId>mdsal-binding-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.yangtools</groupId>
41             <artifactId>yang-common</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.infrautils</groupId>
45             <artifactId>diagstatus-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.openflowplugin</groupId>
49             <artifactId>openflowplugin-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.openflowplugin.model</groupId>
53             <artifactId>model-flow-service</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.openflowplugin.applications</groupId>
57             <artifactId>forwardingrules-manager</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.osgi</groupId>
61             <artifactId>org.osgi.framework</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.osgi</groupId>
65             <artifactId>org.osgi.service.component.annotations</artifactId>
66         </dependency>
67
68         <dependency>
69             <groupId>org.opendaylight.mdsal</groupId>
70             <artifactId>mdsal-binding-test-utils</artifactId>
71         </dependency>
72     </dependencies>
73
74 </project>