blob: 44f6b4fb6fde4ec9fd7b5bae4027301574ba55db [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>
Jenkinsf9b76052020-03-25 22:44:44 +000024 <version>2.0.0</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>
38 <onos.app.requires>
39 org.onosproject.mcast,
40 org.opencord.sadis
41 </onos.app.requires>
42 </properties>
43
44 <dependencies>
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onlab-osgi</artifactId>
48 <version>${onos.version}</version>
49 <scope>provided</scope>
50 </dependency>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-api</artifactId>
54 <version>${onos.version}</version>
55 <scope>provided</scope>
56 <classifier>tests</classifier>
57 </dependency>
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onos-core-serializers</artifactId>
61 <version>${onos.version}</version>
62 <scope>provided</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.opencord</groupId>
66 <artifactId>sadis-api</artifactId>
67 <version>${sadis.api.version}</version>
68 <scope>provided</scope>
69 </dependency>
70 <dependency>
71 <groupId>org.onosproject</groupId>
72 <artifactId>onos-apps-mcast-api</artifactId>
73 <version>${onos.version}</version>
74 <scope>provided</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.opencord</groupId>
78 <artifactId>mcast-api</artifactId>
79 <version>${project.version}</version>
80 <scope>compile</scope>
81 </dependency>
82 <dependency>
83 <groupId>org.onosproject</groupId>
84 <artifactId>onlab-junit</artifactId>
85 <version>${onos.version}</version>
86 <scope>test</scope>
87 </dependency>
88 </dependencies>
89
90 <build>
91 <plugins>
92 <plugin>
93 <groupId>org.onosproject</groupId>
94 <artifactId>onos-maven-plugin</artifactId>
95 </plugin>
96 </plugins>
97 </build>
98</project>