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> |
Brian O'Connor | 955c316 | 2016-03-10 15:27:19 -0800 | [diff] [blame] | 25 | <version>1.6.0-SNAPSHOT</version> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>onos-app-openstackinterface-app</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
Jian Li | 2b746f4 | 2016-03-07 21:26:48 -0800 | [diff] [blame] | 32 | <description>Openstack Interface Application</description> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 33 | |
| 34 | <properties> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 35 | <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 Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 55 | <groupId>org.glassfish.jersey.containers</groupId> |
| 56 | <artifactId>jersey-container-servlet</artifactId> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 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> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 80 | <groupId>org.glassfish.jersey.core</groupId> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 81 | <artifactId>jersey-client</artifactId> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.onosproject</groupId> |
| 85 | <artifactId>onlab-misc</artifactId> |
| 86 | <version>${project.version}</version> |
| 87 | </dependency> |
| 88 | </dependencies> |
sangho | 93447f1 | 2016-02-24 00:33:22 +0900 | [diff] [blame] | 89 | </project> |