xuzhang | 585f905 | 2015-07-22 11:20:13 +0800 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Thomas Vachuska | 58de416 | 2015-09-10 16:15:33 -0700 | [diff] [blame] | 2 | <!-- |
| 3 | ~ Copyright 2015 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 | --> |
xuzhang | 585f905 | 2015-07-22 11:20:13 +0800 | [diff] [blame] | 17 | <project |
| 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 19 | xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <groupId>org.onosproject</groupId> |
| 23 | <artifactId>onos-apps</artifactId> |
Brian O'Connor | f967ad6 | 2015-09-18 15:19:54 -0700 | [diff] [blame] | 24 | <version>1.4.0-SNAPSHOT</version> |
xuzhang | 585f905 | 2015-07-22 11:20:13 +0800 | [diff] [blame] | 25 | <relativePath>../pom.xml</relativePath> |
| 26 | </parent> |
| 27 | |
| 28 | |
| 29 | <artifactId>onos-app-vtnrsc</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
xuzhang | 91b2ff4 | 2015-08-11 11:05:19 +0800 | [diff] [blame] | 32 | <properties> |
xuzhang | 585f905 | 2015-07-22 11:20:13 +0800 | [diff] [blame] | 33 | <onos.app.name>org.onosproject.vtnrsc</onos.app.name> |
xuzhang | 585f905 | 2015-07-22 11:20:13 +0800 | [diff] [blame] | 34 | </properties> |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>javax.ws.rs</groupId> |
| 38 | <artifactId>jsr311-api</artifactId> |
| 39 | <version>1.1.1</version> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.onosproject</groupId> |
| 43 | <artifactId>onos-api</artifactId> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.onosproject</groupId> |
| 47 | <artifactId>onos-cli</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
xuzhang | 91b2ff4 | 2015-08-11 11:05:19 +0800 | [diff] [blame] | 51 | <groupId>org.apache.felix</groupId> |
| 52 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 53 | </dependency> |
xuzhang | 585f905 | 2015-07-22 11:20:13 +0800 | [diff] [blame] | 54 | <dependency> |
xuzhang | 91b2ff4 | 2015-08-11 11:05:19 +0800 | [diff] [blame] | 55 | <groupId>org.apache.karaf.shell</groupId> |
| 56 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.onosproject</groupId> |
| 60 | <artifactId>onlab-junit</artifactId> |
| 61 | <version>${project.version}</version> |
| 62 | </dependency> |
alshabib | d9b7000 | 2015-09-01 17:00:37 -0700 | [diff] [blame] | 63 | <dependency> |
| 64 | <groupId>org.onosproject</groupId> |
| 65 | <artifactId>onos-core-serializers</artifactId> |
| 66 | <version>${project.version}</version> |
| 67 | </dependency> |
xuzhang | 585f905 | 2015-07-22 11:20:13 +0800 | [diff] [blame] | 68 | </dependencies> |
xuzhang | 91b2ff4 | 2015-08-11 11:05:19 +0800 | [diff] [blame] | 69 | |
xuzhang | 585f905 | 2015-07-22 11:20:13 +0800 | [diff] [blame] | 70 | |
| 71 | </project> |