Hyunsun Moon | ab2cf25 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2014 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/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 | 6b77071 | 2015-12-15 15:48:01 -0800 | [diff] [blame^] | 25 | <version>1.4.0-SNAPSHOT</version> |
Hyunsun Moon | ab2cf25 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>onos-app-cordvtn</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
| 32 | <description>Virtual tenant network service for CORD</description> |
| 33 | |
| 34 | <properties> |
| 35 | <onos.app.name>org.onosproject.cordvtn</onos.app.name> |
Hyunsun Moon | 9f0814b | 2015-11-04 17:34:35 -0800 | [diff] [blame] | 36 | <onos.app.requires> |
| 37 | org.onosproject.ovsdb, |
| 38 | org.onosproject.openstackswitching |
| 39 | </onos.app.requires> |
Hyunsun Moon | ab2cf25 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 40 | </properties> |
| 41 | |
| 42 | <dependencies> |
Hyunsun Moon | d0e932a | 2015-09-15 22:39:16 -0700 | [diff] [blame] | 43 | <dependency> |
| 44 | <groupId>org.osgi</groupId> |
| 45 | <artifactId>org.osgi.compendium</artifactId> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.onosproject</groupId> |
| 49 | <artifactId>onos-api</artifactId> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.onosproject</groupId> |
| 53 | <artifactId>onos-core-serializers</artifactId> |
| 54 | <version>${project.version}</version> |
| 55 | </dependency> |
Hyunsun Moon | 1f14555 | 2015-10-08 22:25:30 -0700 | [diff] [blame] | 56 | <dependency> |
| 57 | <groupId>org.onosproject</groupId> |
| 58 | <artifactId>onos-ovsdb-api</artifactId> |
| 59 | <version>${project.version}</version> |
| 60 | </dependency> |
Hyunsun Moon | 4f02b3a | 2015-10-18 18:23:15 -0700 | [diff] [blame] | 61 | <dependency> |
| 62 | <groupId>org.onosproject</groupId> |
| 63 | <artifactId>onos-cli</artifactId> |
| 64 | <version>${project.version}</version> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.apache.karaf.shell</groupId> |
| 68 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 69 | <version>3.0.3</version> |
| 70 | </dependency> |
Hyunsun Moon | 9f0814b | 2015-11-04 17:34:35 -0800 | [diff] [blame] | 71 | <dependency> |
| 72 | <groupId>org.onosproject</groupId> |
Hyunsun Moon | 699f46b | 2015-12-04 11:35:25 -0800 | [diff] [blame] | 73 | <artifactId>onos-rest</artifactId> |
| 74 | <version>${project.version}</version> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.onosproject</groupId> |
| 78 | <artifactId>onlab-rest</artifactId> |
| 79 | <version>${project.version}</version> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>javax.ws.rs</groupId> |
| 83 | <artifactId>jsr311-api</artifactId> |
| 84 | <version>1.1.1</version> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>com.sun.jersey</groupId> |
| 88 | <artifactId>jersey-servlet</artifactId> |
| 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>com.fasterxml.jackson.core</groupId> |
| 92 | <artifactId>jackson-databind</artifactId> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>com.fasterxml.jackson.core</groupId> |
| 96 | <artifactId>jackson-annotations</artifactId> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.onosproject</groupId> |
Hyunsun Moon | 9f0814b | 2015-11-04 17:34:35 -0800 | [diff] [blame] | 100 | <artifactId>onos-app-openstackswitching-api</artifactId> |
| 101 | <version>${project.version}</version> |
| 102 | </dependency> |
Hyunsun Moon | ab2cf25 | 2015-09-10 17:54:10 -0700 | [diff] [blame] | 103 | </dependencies> |
| 104 | |
| 105 | </project> |