blob: 1ee53a0ba8558aefc7959fb016c5ff0cc19f0df2 [file] [log] [blame]
rama-huaweic78f3092016-05-19 18:09:29 +05301<?xml version="1.0" encoding="UTF-8"?>
2
3<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07004 ~ Copyright 2016-present Open Networking Foundation
rama-huaweic78f3092016-05-19 18:09:29 +05305 ~
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 Milkey64677e92017-08-01 10:48:08 -070024 <version>1.11.0-SNAPSHOT</version>
rama-huaweic78f3092016-05-19 18:09:29 +053025 </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 Mandab212bc92016-07-08 16:50:11 +053056 <dependency>
57 <groupId>org.apache.karaf.shell</groupId>
58 <artifactId>org.apache.karaf.shell.console</artifactId>
59 <scope>compile</scope>
60 </dependency>
rama-huaweic78f3092016-05-19 18:09:29 +053061 </dependencies>
62
63</project>