blob: 968e93860bc3a31e7e7d3937ce0a5d73de68cc49 [file] [log] [blame]
developere400c582020-03-24 19:42:08 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015-present Open Networking Foundation
4 ~
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 <parent>
21 <artifactId>onos-app-igmpproxy</artifactId>
22 <groupId>org.opencord</groupId>
Jenkinsfedce552020-03-25 23:23:18 +000023 <version>2.0.0</version>
developere400c582020-03-24 19:42:08 +010024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26
27 <artifactId>onos-app-igmpproxy-app</artifactId>
28
29 <packaging>bundle</packaging>
30 <description>IGMPProxy application for CORD</description>
31
32 <properties>
33 <onos.app.name>org.opencord.igmpproxy</onos.app.name>
34 <onos.app.category>Traffic Steering</onos.app.category>
35 <onos.app.title>IGMP proxy app</onos.app.title>
36 <onos.app.url>http://opencord.org</onos.app.url>
37 <onos.app.readme>IGMP implementation.</onos.app.readme>
38 <onos.app.requires>
39 org.onosproject.mcast
40 org.opencord.sadis
41 </onos.app.requires>
Matteo Scandolobb6add62020-03-25 16:12:30 -070042 <sadis.api.version>5.0.1</sadis.api.version>
developere400c582020-03-24 19:42:08 +010043 </properties>
44
45
46 <dependencies>
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-api</artifactId>
50 <version>${onos.version}</version>
51 <scope>provided</scope>
52 <classifier>tests</classifier>
53 </dependency>
54
55 <dependency>
56 <groupId>org.onosproject</groupId>
57 <artifactId>onos-cli</artifactId>
58 <version>${onos.version}</version>
59 <scope>provided</scope>
60 </dependency>
61
62 <dependency>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onlab-osgi</artifactId>
65 <version>${onos.version}</version>
66 <scope>provided</scope>
67 </dependency>
68
69 <dependency>
70 <groupId>org.onosproject</groupId>
71 <artifactId>onlab-junit</artifactId>
72 <version>${onos.version}</version>
73 <scope>test</scope>
74 </dependency>
75
76 <dependency>
77 <groupId>org.onosproject</groupId>
78 <artifactId>onlab-misc</artifactId>
79 <version>${onos.version}</version>
80 <scope>provided</scope>
81 </dependency>
82
83 <dependency>
84 <groupId>org.opencord</groupId>
85 <artifactId>sadis-api</artifactId>
86 <version>${sadis.api.version}</version>
87 <scope>provided</scope>
88 </dependency>
89
90 <dependency>
91 <groupId>org.opencord</groupId>
92 <artifactId>onos-app-igmpproxy-api</artifactId>
93 <version>${project.version}</version>
94 <scope>compile</scope>
95 </dependency>
96
97 <dependency>
98 <groupId>org.onosproject</groupId>
99 <artifactId>onos-apps-mcast-api</artifactId>
100 <version>${onos.version}</version>
101 </dependency>
102 </dependencies>
103
104 <build>
105 <plugins>
106 <plugin>
107 <groupId>org.onosproject</groupId>
108 <artifactId>onos-maven-plugin</artifactId>
109 </plugin>
110 </plugins>
111 </build>
112
113</project>