blob: 432be7e56ce984c9ce7d5ca435936e826e82d258 [file] [log] [blame]
Jayakumar Thazhathf0f20892017-09-11 02:00:20 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015-present Open Networking Foundation
4 ~ 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>
30 <version>1.11.2-SNAPSHOT</version>
31 </parent>
32
33 <artifactId>onos-app-routeradvertisement</artifactId>
34 <version>1.11.2-SNAPSHOT</version>
35 <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
69 </dependencies>
70
71</project>