sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Laboratory |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 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> |
Ray Milkey | 72bcefe | 2016-12-02 16:22:53 -0800 | [diff] [blame] | 25 | <version>1.9.0-SNAPSHOT</version> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-app-openstackinterface-app</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | |
Jian Li | 2b746f4 | 2016-03-07 21:26:48 -0800 | [diff] [blame] | 31 | <description>Openstack Interface Application</description> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 32 | |
| 33 | <properties> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 34 | <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 Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 54 | <groupId>org.glassfish.jersey.containers</groupId> |
| 55 | <artifactId>jersey-container-servlet</artifactId> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 56 | </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 Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 79 | <groupId>org.glassfish.jersey.core</groupId> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 80 | <artifactId>jersey-client</artifactId> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.onosproject</groupId> |
| 84 | <artifactId>onlab-misc</artifactId> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 85 | </dependency> |
Daniel Park | a26f265 | 2016-09-08 16:48:26 +0900 | [diff] [blame] | 86 | <dependency> |
| 87 | <groupId>commons-io</groupId> |
| 88 | <artifactId>commons-io</artifactId> |
| 89 | <version>2.4</version> |
| 90 | </dependency> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 91 | </dependencies> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 92 | </project> |