blob: 19ac244431408ce715b68bf23e5a803bed4034aa [file] [log] [blame]
sangho93447f12016-02-24 00:33:22 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2016-present Open Networking Laboratory
sangho93447f12016-02-24 00:33:22 +09004 ~
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 xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-app-openstackinterface</artifactId>
Brian O'Connore642f7c2016-05-23 18:33:04 -070025 <version>1.7.0-SNAPSHOT</version>
sangho93447f12016-02-24 00:33:22 +090026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-app-openstackinterface-app</artifactId>
30 <packaging>bundle</packaging>
31
Jian Li2b746f42016-03-07 21:26:48 -080032 <description>Openstack Interface Application</description>
sangho93447f12016-02-24 00:33:22 +090033
34 <properties>
sangho93447f12016-02-24 00:33:22 +090035 <onos.app.readme>Openstack Interface Application.</onos.app.readme>
36 </properties>
37
38 <dependencies>
39 <dependency>
40 <groupId>org.onosproject</groupId>
41 <artifactId>onos-app-openstackinterface-api</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onos-rest</artifactId>
47 <version>${project.version}</version>
48 </dependency>
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onlab-rest</artifactId>
52 <version>${project.version}</version>
53 </dependency>
54 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080055 <groupId>org.glassfish.jersey.containers</groupId>
56 <artifactId>jersey-container-servlet</artifactId>
sangho93447f12016-02-24 00:33:22 +090057 </dependency>
58 <dependency>
59 <groupId>com.fasterxml.jackson.core</groupId>
60 <artifactId>jackson-databind</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>com.fasterxml.jackson.core</groupId>
64 <artifactId>jackson-annotations</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>org.osgi</groupId>
68 <artifactId>org.osgi.compendium</artifactId>
69 </dependency>
70 <dependency>
71 <groupId>org.osgi</groupId>
72 <artifactId>org.osgi.core</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onos-app-dhcp-api</artifactId>
77 <version>${project.version}</version>
78 </dependency>
79 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080080 <groupId>org.glassfish.jersey.core</groupId>
sangho93447f12016-02-24 00:33:22 +090081 <artifactId>jersey-client</artifactId>
sangho93447f12016-02-24 00:33:22 +090082 </dependency>
83 <dependency>
84 <groupId>org.onosproject</groupId>
85 <artifactId>onlab-misc</artifactId>
86 <version>${project.version}</version>
87 </dependency>
88 </dependencies>
sangho93447f12016-02-24 00:33:22 +090089</project>