blob: 7bbeca81373e7ed04c1a81295a5712ce79ae037a [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 </parent>
27
28 <artifactId>onos-app-openstackinterface-app</artifactId>
29 <packaging>bundle</packaging>
30
Jian Li2b746f42016-03-07 21:26:48 -080031 <description>Openstack Interface Application</description>
sangho93447f12016-02-24 00:33:22 +090032
33 <properties>
sangho93447f12016-02-24 00:33:22 +090034 <onos.app.readme>Openstack Interface Application.</onos.app.readme>
35 </properties>
36
37 <dependencies>
38 <dependency>
39 <groupId>org.onosproject</groupId>
40 <artifactId>onos-app-openstackinterface-api</artifactId>
41 <version>${project.version}</version>
42 </dependency>
43 <dependency>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onos-rest</artifactId>
46 <version>${project.version}</version>
47 </dependency>
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onlab-rest</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080054 <groupId>org.glassfish.jersey.containers</groupId>
55 <artifactId>jersey-container-servlet</artifactId>
sangho93447f12016-02-24 00:33:22 +090056 </dependency>
57 <dependency>
58 <groupId>com.fasterxml.jackson.core</groupId>
59 <artifactId>jackson-databind</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>com.fasterxml.jackson.core</groupId>
63 <artifactId>jackson-annotations</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.osgi</groupId>
67 <artifactId>org.osgi.compendium</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>org.osgi</groupId>
71 <artifactId>org.osgi.core</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.onosproject</groupId>
75 <artifactId>onos-app-dhcp-api</artifactId>
76 <version>${project.version}</version>
77 </dependency>
78 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080079 <groupId>org.glassfish.jersey.core</groupId>
sangho93447f12016-02-24 00:33:22 +090080 <artifactId>jersey-client</artifactId>
sangho93447f12016-02-24 00:33:22 +090081 </dependency>
82 <dependency>
83 <groupId>org.onosproject</groupId>
84 <artifactId>onlab-misc</artifactId>
sangho93447f12016-02-24 00:33:22 +090085 </dependency>
86 </dependencies>
sangho93447f12016-02-24 00:33:22 +090087</project>