Bump versions by x.(y+1).z
[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>org.opendaylight.mdsal</groupId>
18             <artifactId>mdsal-binding-api</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>org.opendaylight.yangtools</groupId>
22             <artifactId>yang-common</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.opendaylight.infrautils</groupId>
26             <artifactId>diagstatus-api</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.openflowplugin</groupId>
30             <artifactId>openflowplugin-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.openflowplugin.model</groupId>
34             <artifactId>model-flow-service</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.openflowplugin.applications</groupId>
38             <artifactId>forwardingrules-manager</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>com.google.code.gson</groupId>
42             <artifactId>gson</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.apache.karaf.shell</groupId>
46             <artifactId>org.apache.karaf.shell.console</artifactId>
47             <scope>provided</scope>
48         </dependency>
49         <dependency>
50             <groupId>org.osgi</groupId>
51             <artifactId>org.osgi.framework</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>com.guicedee.services</groupId>
55             <artifactId>javax.inject</artifactId>
56             <optional>true</optional>
57         </dependency>
58         <dependency>
59             <groupId>jakarta.annotation</groupId>
60             <artifactId>jakarta.annotation-api</artifactId>
61             <optional>true</optional>
62         </dependency>
63
64         <dependency>
65             <groupId>org.opendaylight.mdsal</groupId>
66             <artifactId>mdsal-binding-test-utils</artifactId>
67         </dependency>
68     </dependencies>
69
70 </project>