Daniel Park | a7d6e9f | 2016-01-18 17:54:14 +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 |
Daniel Park | a7d6e9f | 2016-01-18 17:54:14 +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/xsd/maven-4.0.0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-apps</artifactId> |
Brian O'Connor | 0814ae6 | 2016-09-21 11:46:48 -0700 | [diff] [blame] | 25 | <version>1.7.0-SNAPSHOT</version> |
Daniel Park | a7d6e9f | 2016-01-18 17:54:14 +0900 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-app-openstacknode</artifactId> |
| 29 | <packaging>bundle</packaging> |
| 30 | |
| 31 | <description>SONA Openstack Node Bootstrap Application</description> |
| 32 | |
| 33 | |
| 34 | <properties> |
| 35 | <onos.app.name>org.onosproject.openstacknode</onos.app.name> |
Jian Li | fd46e1d | 2016-03-08 09:18:53 -0800 | [diff] [blame] | 36 | <onos.app.title>OpenStack Node Bootstrap App</onos.app.title> |
| 37 | <onos.app.category>Utility</onos.app.category> |
Daniel Park | a7d6e9f | 2016-01-18 17:54:14 +0900 | [diff] [blame] | 38 | <onos.app.url>http://onosproject.org</onos.app.url> |
| 39 | <onos.app.readme>SONA Openstack Node Bootstrap Application</onos.app.readme> |
| 40 | <onos.app.requires> |
Hyunsun Moon | b974fca | 2016-06-30 21:20:39 -0700 | [diff] [blame] | 41 | org.onosproject.ovsdb-base, |
| 42 | org.onosproject.drivers.ovsdb |
Daniel Park | a7d6e9f | 2016-01-18 17:54:14 +0900 | [diff] [blame] | 43 | </onos.app.requires> |
| 44 | </properties> |
| 45 | |
| 46 | <dependencies> |
| 47 | <dependency> |
| 48 | <groupId>org.osgi</groupId> |
| 49 | <artifactId>org.osgi.compendium</artifactId> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.onosproject</groupId> |
| 53 | <artifactId>onos-api</artifactId> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.onosproject</groupId> |
| 57 | <artifactId>onos-core-serializers</artifactId> |
| 58 | <version>${project.version}</version> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.onosproject</groupId> |
Hyunsun Moon | 34bbe17 | 2016-06-28 19:18:40 -0700 | [diff] [blame] | 62 | <artifactId>onos-cli</artifactId> |
| 63 | <version>${project.version}</version> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.onosproject</groupId> |
Daniel Park | a7d6e9f | 2016-01-18 17:54:14 +0900 | [diff] [blame] | 67 | <artifactId>onos-ovsdb-api</artifactId> |
Daniel Park | a7d6e9f | 2016-01-18 17:54:14 +0900 | [diff] [blame] | 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>com.fasterxml.jackson.core</groupId> |
| 71 | <artifactId>jackson-databind</artifactId> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>com.fasterxml.jackson.core</groupId> |
| 75 | <artifactId>jackson-annotations</artifactId> |
| 76 | </dependency> |
Hyunsun Moon | 34bbe17 | 2016-06-28 19:18:40 -0700 | [diff] [blame] | 77 | <dependency> |
| 78 | <groupId>org.apache.karaf.shell</groupId> |
| 79 | <artifactId>org.apache.karaf.shell.console</artifactId> |
Hyunsun Moon | 34bbe17 | 2016-06-28 19:18:40 -0700 | [diff] [blame] | 80 | </dependency> |
Daniel Park | a7d6e9f | 2016-01-18 17:54:14 +0900 | [diff] [blame] | 81 | </dependencies> |
| 82 | </project> |