blob: ef710270245744f74c45ab4ed33de5ca466892a5 [file] [log] [blame]
jskimaa851932016-10-27 17:45:30 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3~ Copyright 2015-present Open Networking Laboratory
4~
5~ Licensed under the Apache License, Version 2.0 (the "License");
6~ you may not use this file except in compliance with the License.
7~ You may obtain a copy of the License at
8~
9~ http://www.apache.org/licenses/LICENSE-2.0
10~
11~ Unless required by applicable law or agreed to in writing, software
12~ distributed under the License is distributed on an "AS IS" BASIS,
13~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14~ See the License for the specific language governing permissions and
15~ limitations under the License.
16-->
17<project
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
19 xmlns="http://maven.apache.org/POM/4.0.0"
20 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
21
22 <modelVersion>4.0.0</modelVersion>
23
24 <parent>
25 <groupId>org.onosproject</groupId>
26 <artifactId>onos-app-openstacknetworking</artifactId>
Ray Milkey4f6d4282016-11-30 14:52:32 -080027 <version>1.8.0-rc3</version>
jskimaa851932016-10-27 17:45:30 +090028 </parent>
29
30 <artifactId>onos-app-openstacknetworking-cli</artifactId>
31 <packaging>bundle</packaging>
32
33 <properties>
34 <api.version>1.0.0</api.version>
35 <api.title>ONOS Openstack Networking REST API</api.title>
36 <api.description>
37 APIs for interacting with Openstack Neutron Plugin.
38 </api.description>
39 <api.package>org.onosproject.openstacknetworking.cli</api.package>
40 </properties>
41
42
43 <dependencies>
44 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onos-app-openstacknetworking-api</artifactId>
47 <version>${project.version}</version>
48 </dependency>
49
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onlab-osgi</artifactId>
53 </dependency>
54
55 <dependency>
56 <groupId>org.onosproject</groupId>
57 <artifactId>onlab-junit</artifactId>
58 <scope>test</scope>
59 </dependency>
60
61 <dependency>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>org.apache.felix.scr.annotations</artifactId>
64 <scope>provided</scope>
65 </dependency>
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-cli</artifactId>
69 <version>${project.version}</version>
70 </dependency>
71 <dependency>
72 <groupId>org.apache.karaf.shell</groupId>
73 <artifactId>org.apache.karaf.shell.console</artifactId>
74 </dependency>
75 </dependencies>
76</project>