blob: 04c6b7cc5f6c1a552fd04ab187ac468767e96cd0 [file] [log] [blame]
alshabib3b1eadc2016-02-01 17:57:00 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connorcf85aa82017-08-03 22:46:01 -07003 ~ Copyright 2016-present Open Networking Foundation
alshabib3b1eadc2016-02-01 17:57:00 -08004 ~
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
22 <parent>
23 <groupId>org.onosproject</groupId>
Charles Chancde9cfc2016-12-14 16:15:09 -080024 <artifactId>onos-dependencies</artifactId>
Carmelo Cascone56dc6582019-11-15 21:34:03 -080025 <version>2.2.1-b3</version>
alshabib3b1eadc2016-02-01 17:57:00 -080026 </parent>
27
alshabib772e1582016-06-01 17:50:05 -070028 <groupId>org.opencord</groupId>
29 <artifactId>mcast</artifactId>
Carmelo Cascone995fd682019-11-14 14:22:39 -080030 <version>2.0.0-SNAPSHOT</version>
alshabib3b1eadc2016-02-01 17:57:00 -080031 <packaging>bundle</packaging>
32
33 <description>CORD Multicast application</description>
34
35 <properties>
alshabib191751a2016-06-01 17:55:26 -070036 <onos.app.name>org.opencord.mcast</onos.app.name>
Jian Li0f1bd262016-03-08 09:18:53 -080037 <onos.app.category>Traffic Steering</onos.app.category>
Jian Lieddfb972016-03-07 21:26:48 -080038 <onos.app.title>CORD Multicast App</onos.app.title>
Jian Li0f1bd262016-03-08 09:18:53 -080039 <onos.app.url>http://opencord.org</onos.app.url>
Esin Karaman996177c2020-03-05 13:21:09 +000040 <sadis.api.version>5.0.0</sadis.api.version>
alshabib3b1eadc2016-02-01 17:57:00 -080041 </properties>
42
43 <dependencies>
44 <dependency>
45 <groupId>org.onosproject</groupId>
alshabib772e1582016-06-01 17:50:05 -070046 <artifactId>onlab-osgi</artifactId>
47 <version>${onos.version}</version>
Carmelo Cascone995fd682019-11-14 14:22:39 -080048 <scope>provided</scope>
alshabib772e1582016-06-01 17:50:05 -070049 </dependency>
alshabib772e1582016-06-01 17:50:05 -070050 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-api</artifactId>
53 <version>${onos.version}</version>
Carmelo Cascone995fd682019-11-14 14:22:39 -080054 <scope>provided</scope>
Sonal Kasliwala0bbe6c2020-01-06 10:46:30 +000055 <classifier>tests</classifier>
Carmelo Cascone995fd682019-11-14 14:22:39 -080056 </dependency>
57 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onos-core-serializers</artifactId>
60 <version>${onos.version}</version>
61 <scope>provided</scope>
alshabib772e1582016-06-01 17:50:05 -070062 </dependency>
Charles Chancde9cfc2016-12-14 16:15:09 -080063 <dependency>
64 <groupId>org.opencord</groupId>
Esin Karaman996177c2020-03-05 13:21:09 +000065 <artifactId>sadis-api</artifactId>
66 <version>${sadis.api.version}</version>
Carmelo Cascone995fd682019-11-14 14:22:39 -080067 <scope>provided</scope>
Charles Chancde9cfc2016-12-14 16:15:09 -080068 </dependency>
Charles Chancde9cfc2016-12-14 16:15:09 -080069 <dependency>
Esin Karaman39b24852019-08-28 13:57:30 +000070 <groupId>org.onosproject</groupId>
71 <artifactId>onos-apps-mcast-api</artifactId>
72 <version>${onos.version}</version>
Carmelo Cascone995fd682019-11-14 14:22:39 -080073 <scope>provided</scope>
Jonathan Hartf4b27c62018-05-02 17:30:05 -070074 </dependency>
Sonal Kasliwala0bbe6c2020-01-06 10:46:30 +000075 <dependency>
76 <groupId>org.onosproject</groupId>
77 <artifactId>onlab-junit</artifactId>
78 <version>${onos.version}</version>
79 <scope>test</scope>
80 </dependency>
alshabib3b1eadc2016-02-01 17:57:00 -080081 </dependencies>
alshabib772e1582016-06-01 17:50:05 -070082
83 <build>
84 <plugins>
85 <plugin>
alshabib772e1582016-06-01 17:50:05 -070086 <groupId>org.onosproject</groupId>
87 <artifactId>onos-maven-plugin</artifactId>
alshabib772e1582016-06-01 17:50:05 -070088 </plugin>
89 </plugins>
90 </build>
91
Charles Chancde9cfc2016-12-14 16:15:09 -080092 <repositories>
93 <repository>
94 <id>central</id>
95 <name>Central Repository</name>
Daniele Moro6a28e612020-01-15 15:17:03 -080096 <url>https://repo.maven.apache.org/maven2</url>
Charles Chancde9cfc2016-12-14 16:15:09 -080097 <layout>default</layout>
98 <snapshots>
99 <enabled>false</enabled>
100 </snapshots>
101 <releases>
102 <enabled>true</enabled>
103 <updatePolicy>always</updatePolicy>
104 <checksumPolicy>fail</checksumPolicy>
105 </releases>
106 </repository>
Charles Chancde9cfc2016-12-14 16:15:09 -0800107 <repository>
108 <id>snapshots</id>
109 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
110 <snapshots>
111 <enabled>true</enabled>
112 <updatePolicy>always</updatePolicy>
113 <checksumPolicy>fail</checksumPolicy>
114 </snapshots>
115 </repository>
116 </repositories>
alshabib3b1eadc2016-02-01 17:57:00 -0800117</project>