rama-huawei | c78f309 | 2016-05-19 18:09:29 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | |
| 3 | <!-- |
| 4 | ~ Copyright 2016-present Open Networking Laboratory |
| 5 | ~ |
| 6 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | ~ you may not use this file except in compliance with the License. |
| 8 | ~ You may obtain a copy of the License at |
| 9 | ~ |
| 10 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | ~ |
| 12 | ~ Unless required by applicable law or agreed to in writing, software |
| 13 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | ~ See the License for the specific language governing permissions and |
| 16 | ~ limitations under the License. |
| 17 | --> |
| 18 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 19 | <modelVersion>4.0.0</modelVersion> |
| 20 | |
| 21 | <parent> |
| 22 | <groupId>org.onosproject</groupId> |
| 23 | <artifactId>onos-app-vtn</artifactId> |
Ray Milkey | 54a7851 | 2017-02-13 11:13:52 -0800 | [diff] [blame] | 24 | <version>1.10.0-SNAPSHOT</version> |
rama-huawei | c78f309 | 2016-05-19 18:09:29 +0530 | [diff] [blame] | 25 | </parent> |
| 26 | |
| 27 | <artifactId>onos-app-sfc-web</artifactId> |
| 28 | <packaging>bundle</packaging> |
| 29 | |
| 30 | <description>SFC web application</description> |
| 31 | |
| 32 | <properties> |
| 33 | <onos.app.name>org.onosproject.sfcweb</onos.app.name> |
| 34 | <onos.app.title>SFC web application</onos.app.title> |
| 35 | <onos.app.category>Utility</onos.app.category> |
| 36 | <onos.app.url>https://wiki.onosproject.org/display/ONOS/</onos.app.url> |
| 37 | <web.context>/onos/vtn</web.context> |
| 38 | <onos.app.readme> |
| 39 | Allows the user to visualize different types of paths between |
| 40 | network entities such as switches and hosts. |
| 41 | SF and SFF. |
| 42 | </onos.app.readme> |
| 43 | </properties> |
| 44 | |
| 45 | <dependencies> |
| 46 | <dependency> |
| 47 | <groupId>javax.ws.rs</groupId> |
| 48 | <artifactId>javax.ws.rs-api</artifactId> |
| 49 | <version>2.0.1</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.onosproject</groupId> |
| 53 | <artifactId>onos-app-vtn-rsc</artifactId> |
| 54 | <version>${project.version}</version> |
| 55 | </dependency> |
Phaneendra Manda | b212bc9 | 2016-07-08 16:50:11 +0530 | [diff] [blame] | 56 | <dependency> |
| 57 | <groupId>org.apache.karaf.shell</groupId> |
| 58 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 59 | <scope>compile</scope> |
| 60 | </dependency> |
rama-huawei | c78f309 | 2016-05-19 18:09:29 +0530 | [diff] [blame] | 61 | </dependencies> |
| 62 | |
| 63 | </project> |