blob: 15edff8b9f3ab7e7766a5ea3a77b4b9b8c72fec6 [file] [log] [blame]
Daniele Moro8ea9e102020-03-24 18:56:52 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2020-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/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <groupId>org.opencord</groupId>
23 <artifactId>mcast</artifactId>
Jenkinsc2a8b372021-03-30 20:51:44 +000024 <version>2.3.1</version>
Daniele Moro8ea9e102020-03-24 18:56:52 +010025 <relativePath>../pom.xml</relativePath>
26 </parent>
27
28 <artifactId>mcast-app</artifactId>
29
30 <packaging>bundle</packaging>
31 <description>CORD Multicast application</description>
32
33 <properties>
34 <onos.app.name>org.opencord.mcast</onos.app.name>
35 <onos.app.category>Traffic Steering</onos.app.category>
36 <onos.app.title>CORD Multicast App</onos.app.title>
37 <onos.app.url>http://opencord.org</onos.app.url>
Daniele Moro8ea9e102020-03-24 18:56:52 +010038 </properties>
39
40 <dependencies>
41 <dependency>
42 <groupId>org.onosproject</groupId>
43 <artifactId>onlab-osgi</artifactId>
44 <version>${onos.version}</version>
45 <scope>provided</scope>
46 </dependency>
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 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onos-core-serializers</artifactId>
57 <version>${onos.version}</version>
58 <scope>provided</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.opencord</groupId>
62 <artifactId>sadis-api</artifactId>
63 <version>${sadis.api.version}</version>
64 <scope>provided</scope>
65 </dependency>
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-apps-mcast-api</artifactId>
69 <version>${onos.version}</version>
70 <scope>provided</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.opencord</groupId>
74 <artifactId>mcast-api</artifactId>
Ilayda Ozdemir2fccbce2021-02-23 15:36:47 +000075 <version>${mcast.api.version}</version>
Daniele Moro8ea9e102020-03-24 18:56:52 +010076 <scope>compile</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.onosproject</groupId>
80 <artifactId>onlab-junit</artifactId>
81 <version>${onos.version}</version>
82 <scope>test</scope>
83 </dependency>
84 </dependencies>
85
86 <build>
87 <plugins>
88 <plugin>
89 <groupId>org.onosproject</groupId>
90 <artifactId>onos-maven-plugin</artifactId>
91 </plugin>
92 </plugins>
93 </build>
94</project>