blob: 987c1987b8f4efd41c1f61813776741687f57e6a [file] [log] [blame]
alshabibeff00542015-09-23 13:22:33 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
alshabibeff00542015-09-23 13:22:33 -07004 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-apps</artifactId>
Ray Milkey8588c482017-02-13 10:52:31 -080025 <version>1.9.0-b3</version>
alshabibeff00542015-09-23 13:22:33 -070026 </parent>
27
28 <artifactId>onos-app-pim</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>Protocol Independent Multicast Emulation</description>
32
33 <properties>
34 <onos.app.name>org.onosproject.pim</onos.app.name>
Jian Lifd46e1d2016-03-08 09:18:53 -080035 <onos.app.title>Protocol Independent Multicast Emulation App</onos.app.title>
36 <onos.app.category>Traffic Steering</onos.app.category>
Jian Lic35415d2016-01-14 17:22:31 -080037 <onos.app.url>http://onosproject.org</onos.app.url>
38 <onos.app.readme>Protocol independent multicast emulation.</onos.app.readme>
alshabibeff00542015-09-23 13:22:33 -070039 </properties>
40
41 <dependencies>
42 <dependency>
43 <groupId>org.onosproject</groupId>
44 <artifactId>onos-api</artifactId>
alshabibeff00542015-09-23 13:22:33 -070045 </dependency>
46
47 <dependency>
48 <groupId>org.onosproject</groupId>
Jonathan Hart00cddda2016-02-16 10:30:37 -080049 <artifactId>onos-app-routing-api</artifactId>
50 <version>${project.version}</version>
51 </dependency>
52
53
54 <dependency>
55 <groupId>org.onosproject</groupId>
alshabibeff00542015-09-23 13:22:33 -070056 <artifactId>onos-cli</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59
60
61 <dependency>
62 <groupId>org.onosproject</groupId>
63 <artifactId>onlab-osgi</artifactId>
alshabibeff00542015-09-23 13:22:33 -070064 </dependency>
65
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onlab-junit</artifactId>
69 <scope>test</scope>
70 </dependency>
71
72 <!-- This is needed by ComponentContext, used for tunable configuration -->
73 <dependency>
74 <groupId>org.osgi</groupId>
75 <artifactId>org.osgi.compendium</artifactId>
76 </dependency>
77
78 <dependency>
79 <groupId>org.apache.karaf.shell</groupId>
80 <artifactId>org.apache.karaf.shell.console</artifactId>
81 </dependency>
82
83 <dependency>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>org.apache.felix.scr.annotations</artifactId>
alshabibeff00542015-09-23 13:22:33 -070086 <scope>provided</scope>
87 </dependency>
88 </dependencies>
89
alshabibeff00542015-09-23 13:22:33 -070090</project>