blob: 5484061c782523f8981b21f2fa305c530827cdeb [file] [log] [blame]
rama-huaweic78f3092016-05-19 18:09:29 +05301<?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>
24 <version>1.6.0-SNAPSHOT</version>
25 <relativePath>../pom.xml</relativePath>
26 </parent>
27
28 <artifactId>onos-app-sfc-web</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>SFC web application</description>
32
33 <properties>
34 <onos.app.name>org.onosproject.sfcweb</onos.app.name>
35 <onos.app.title>SFC web application</onos.app.title>
36 <onos.app.category>Utility</onos.app.category>
37 <onos.app.url>https://wiki.onosproject.org/display/ONOS/</onos.app.url>
38 <web.context>/onos/vtn</web.context>
39 <onos.app.readme>
40 Allows the user to visualize different types of paths between
41 network entities such as switches and hosts.
42 SF and SFF.
43 </onos.app.readme>
44 </properties>
45
46 <dependencies>
47 <dependency>
48 <groupId>javax.ws.rs</groupId>
49 <artifactId>javax.ws.rs-api</artifactId>
50 <version>2.0.1</version>
51 </dependency>
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-app-vtn-rsc</artifactId>
55 <version>${project.version}</version>
56 </dependency>
57 </dependencies>
58
59</project>