blob: 9d55b87ce41ba565999e49509ec197a5d84b8994 [file] [log] [blame]
Jayakumar Thazhath3ec6aa22017-09-11 02:00:20 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Annce John0b4057a2017-11-21 01:46:41 -05003 ~ Copyright 2017-present Open Networking Foundation
Jayakumar Thazhath3ec6aa22017-09-11 02:00:20 -04004 ~ Originally created by Pengfei Lu, Network and Cloud Computing Laboratory, Dalian University of Technology, China
5 ~ Advisers: Keqiu Li and Heng Qi
6 ~ This work is supported by the State Key Program of National Natural Science of China(Grant No. 61432002)
7 ~ and Prospective Research Project on Future Networks in Jiangsu Future Networks Innovation Institute.
8 ~
9 ~ Licensed under the Apache License, Version 2.0 (the "License");
10 ~ you may not use this file except in compliance with the License.
11 ~ You may obtain a copy of the License at
12 ~
13 ~ http://www.apache.org/licenses/LICENSE-2.0
14 ~
15 ~ Unless required by applicable law or agreed to in writing, software
16 ~ distributed under the License is distributed on an "AS IS" BASIS,
17 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 ~ See the License for the specific language governing permissions and
19 ~ limitations under the License.
20 -->
21<!--suppress MavenModelInspection -->
22<project xmlns="http://maven.apache.org/POM/4.0.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <modelVersion>4.0.0</modelVersion>
26
27 <parent>
28 <groupId>org.onosproject</groupId>
29 <artifactId>onos-apps</artifactId>
ONOS Jenkins Userd06da9e2017-12-11 20:41:44 +000030 <version>1.13.0-b3</version>
Jayakumar Thazhath3ec6aa22017-09-11 02:00:20 -040031 </parent>
32
33 <artifactId>onos-app-routeradvertisement</artifactId>
ONOS Jenkins Userd06da9e2017-12-11 20:41:44 +000034 <version>1.13.0-b3</version>
Jayakumar Thazhath3ec6aa22017-09-11 02:00:20 -040035 <packaging>bundle</packaging>
36
37 <description>ONOS IPv6 RA application</description>
38 <url>http://onosproject.org</url>
39
40 <properties>
41 <onos.app.name>org.infosys.routeradvertisement</onos.app.name>
42 <onos.app.title>IPv6 RA Generator</onos.app.title>
43 <onos.app.category>Traffic Steering</onos.app.category>
44 <onos.app.url>http://onosproject.org</onos.app.url>
45 <onos.app.readme>Application for generating IPv6 RA</onos.app.readme>
46 </properties>
47
48 <dependencies>
49 <dependency>
50 <groupId>com.google.guava</groupId>
51 <artifactId>guava</artifactId>
52 </dependency>
53
54 <dependency>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>org.apache.felix.scr.annotations</artifactId>
57 </dependency>
58
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onos-incubator-api</artifactId>
62 </dependency>
63
64 <dependency>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onlab-misc</artifactId>
67 </dependency>
68
Annce John0b4057a2017-11-21 01:46:41 -050069 <dependency>
70 <groupId>org.apache.karaf.shell</groupId>
71 <artifactId>org.apache.karaf.shell.console</artifactId>
72 </dependency>
73
74 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onos-cli</artifactId>
Yuta HIGUCHIe42b9e52017-11-22 14:50:36 -080077 <version>${project.version}</version>
Annce John0b4057a2017-11-21 01:46:41 -050078 </dependency>
Yuta HIGUCHIe42b9e52017-11-22 14:50:36 -080079
Jayakumar Thazhath3ec6aa22017-09-11 02:00:20 -040080 </dependencies>
81
82</project>