blob: 2d51a44e004a0659a91fd206b8661b3f1ca589e4 [file] [log] [blame]
sangho93447f12016-02-24 00:33:22 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015-2016 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 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'Connor955c3162016-03-10 15:27:19 -080025 <version>1.6.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>
55 <groupId>com.sun.jersey</groupId>
56 <artifactId>jersey-servlet</artifactId>
57 </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>
80 <groupId>com.sun.jersey</groupId>
81 <artifactId>jersey-client</artifactId>
82 <version>1.19</version>
83 </dependency>
84 <dependency>
85 <groupId>com.sun.jersey</groupId>
86 <artifactId>jersey-core</artifactId>
87 <version>1.19</version>
88 </dependency>
89 <dependency>
90 <groupId>org.onosproject</groupId>
91 <artifactId>onlab-misc</artifactId>
92 <version>${project.version}</version>
93 </dependency>
94 </dependencies>
sangho93447f12016-02-24 00:33:22 +090095</project>