Eliminate blueprint for southbound-cli commands
[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.19.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.guicedee.services</groupId>
18             <artifactId>javax.inject</artifactId>
19             <optional>true</optional>
20         </dependency>
21         <dependency>
22             <groupId>jakarta.annotation</groupId>
23             <artifactId>jakarta.annotation-api</artifactId>
24             <optional>true</optional>
25         </dependency>
26         <dependency>
27             <groupId>org.apache.karaf.shell</groupId>
28             <artifactId>org.apache.karaf.shell.core</artifactId>
29             <scope>provided</scope>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.mdsal</groupId>
33             <artifactId>mdsal-binding-api</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.yangtools</groupId>
37             <artifactId>yang-common</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.openflowplugin</groupId>
41             <artifactId>openflowplugin-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.openflowplugin.model</groupId>
45             <artifactId>model-flow-service</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.openflowplugin.applications</groupId>
49             <artifactId>forwardingrules-manager</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.osgi</groupId>
53             <artifactId>org.osgi.framework</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.osgi</groupId>
57             <artifactId>org.osgi.service.component.annotations</artifactId>
58         </dependency>
59
60         <dependency>
61             <groupId>org.opendaylight.mdsal</groupId>
62             <artifactId>mdsal-binding-test-utils</artifactId>
63         </dependency>
64     </dependencies>
65
66     <build>
67         <plugins>
68             <plugin>
69                 <groupId>org.apache.karaf.tooling</groupId>
70                 <artifactId>karaf-services-maven-plugin</artifactId>
71             </plugin>
72         </plugins>
73     </build>
74
75 </project>