blob: 8383b84c4191f1ee444d2555881cc19cb8a933d2 [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>
Jonathan Hartf4b27c62018-05-02 17:30:05 -070040 <onos.app.requires>org.opencord.config</onos.app.requires>
Carmelo Cascone995fd682019-11-14 14:22:39 -080041 <cord.config.version>2.0.0-SNAPSHOT</cord.config.version>
42 <olt.api.version>4.0.0-SNAPSHOT</olt.api.version>
alshabib3b1eadc2016-02-01 17:57:00 -080043 </properties>
44
45 <dependencies>
46 <dependency>
47 <groupId>org.onosproject</groupId>
alshabib772e1582016-06-01 17:50:05 -070048 <artifactId>onlab-osgi</artifactId>
49 <version>${onos.version}</version>
Carmelo Cascone995fd682019-11-14 14:22:39 -080050 <scope>provided</scope>
alshabib772e1582016-06-01 17:50:05 -070051 </dependency>
alshabib772e1582016-06-01 17:50:05 -070052 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-api</artifactId>
55 <version>${onos.version}</version>
Carmelo Cascone995fd682019-11-14 14:22:39 -080056 <scope>provided</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onos-core-serializers</artifactId>
61 <version>${onos.version}</version>
62 <scope>provided</scope>
alshabib772e1582016-06-01 17:50:05 -070063 </dependency>
Charles Chancde9cfc2016-12-14 16:15:09 -080064 <dependency>
65 <groupId>org.opencord</groupId>
66 <artifactId>cord-config</artifactId>
David K. Bainbridge13001242017-08-10 09:12:26 -070067 <version>${cord.config.version}</version>
Carmelo Cascone995fd682019-11-14 14:22:39 -080068 <scope>provided</scope>
Charles Chancde9cfc2016-12-14 16:15:09 -080069 </dependency>
Charles Chancde9cfc2016-12-14 16:15:09 -080070 <dependency>
Esin Karaman39b24852019-08-28 13:57:30 +000071 <groupId>org.onosproject</groupId>
72 <artifactId>onos-apps-mcast-api</artifactId>
73 <version>${onos.version}</version>
Carmelo Cascone995fd682019-11-14 14:22:39 -080074 <scope>provided</scope>
Jonathan Hartf4b27c62018-05-02 17:30:05 -070075 </dependency>
alshabib3b1eadc2016-02-01 17:57:00 -080076 </dependencies>
alshabib772e1582016-06-01 17:50:05 -070077
78 <build>
79 <plugins>
80 <plugin>
alshabib772e1582016-06-01 17:50:05 -070081 <groupId>org.onosproject</groupId>
82 <artifactId>onos-maven-plugin</artifactId>
alshabib772e1582016-06-01 17:50:05 -070083 </plugin>
84 </plugins>
85 </build>
86
Charles Chancde9cfc2016-12-14 16:15:09 -080087 <repositories>
88 <repository>
89 <id>central</id>
90 <name>Central Repository</name>
91 <url>http://repo.maven.apache.org/maven2</url>
92 <layout>default</layout>
93 <snapshots>
94 <enabled>false</enabled>
95 </snapshots>
96 <releases>
97 <enabled>true</enabled>
98 <updatePolicy>always</updatePolicy>
99 <checksumPolicy>fail</checksumPolicy>
100 </releases>
101 </repository>
Charles Chancde9cfc2016-12-14 16:15:09 -0800102 <repository>
103 <id>snapshots</id>
104 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
105 <snapshots>
106 <enabled>true</enabled>
107 <updatePolicy>always</updatePolicy>
108 <checksumPolicy>fail</checksumPolicy>
109 </snapshots>
110 </repository>
111 </repositories>
alshabib3b1eadc2016-02-01 17:57:00 -0800112</project>