blob: 9547edce61a3a978e9a9c999c3b5b31f9a54fbba [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>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070023 <artifactId>onos-apps-vtn</artifactId>
ONOS Jenkins Usercff0bd82018-08-13 23:15:43 +000024 <version>1.14.0-rc1</version>
rama-huaweic78f3092016-05-19 18:09:29 +053025 </parent>
26
Yuta HIGUCHI78472272018-05-03 17:08:16 -070027 <artifactId>onos-apps-vtn-sfcweb</artifactId>
rama-huaweic78f3092016-05-19 18:09:29 +053028 <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>
rama-huaweic78f3092016-05-19 18:09:29 +053049 </dependency>
50 <dependency>
51 <groupId>org.onosproject</groupId>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070052 <artifactId>onos-apps-vtn-vtnrsc</artifactId>
rama-huaweic78f3092016-05-19 18:09:29 +053053 <version>${project.version}</version>
54 </dependency>
Phaneendra Mandab212bc92016-07-08 16:50:11 +053055 <dependency>
56 <groupId>org.apache.karaf.shell</groupId>
57 <artifactId>org.apache.karaf.shell.console</artifactId>
58 <scope>compile</scope>
59 </dependency>
rama-huaweic78f3092016-05-19 18:09:29 +053060 </dependencies>
61
62</project>