blob: 7ec005604f7815d5821b1844f4ea042f34c5d699 [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>
Matteo Scandolo8fa86802020-03-25 15:26:46 -070025 <version>2.2.2</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>
Jenkins52ae9f52020-07-01 10:40:26 +000030 <version>2.1.0</version>
Daniele Moro8ea9e102020-03-24 18:56:52 +010031 <packaging>pom</packaging>
alshabib3b1eadc2016-02-01 17:57:00 -080032
33 <description>CORD Multicast application</description>
34
35 <properties>
Andrea Campanella11a18772020-07-01 10:13:55 +020036 <sadis.api.version>5.1.0</sadis.api.version>
alshabib3b1eadc2016-02-01 17:57:00 -080037 </properties>
38
Daniele Moro8ea9e102020-03-24 18:56:52 +010039 <modules>
40 <module>api</module>
41 <module>app</module>
42 </modules>
alshabib772e1582016-06-01 17:50:05 -070043
Charles Chancde9cfc2016-12-14 16:15:09 -080044 <repositories>
45 <repository>
46 <id>central</id>
47 <name>Central Repository</name>
Daniele Moro6a28e612020-01-15 15:17:03 -080048 <url>https://repo.maven.apache.org/maven2</url>
Charles Chancde9cfc2016-12-14 16:15:09 -080049 <layout>default</layout>
50 <snapshots>
51 <enabled>false</enabled>
52 </snapshots>
53 <releases>
54 <enabled>true</enabled>
55 <updatePolicy>always</updatePolicy>
56 <checksumPolicy>fail</checksumPolicy>
57 </releases>
58 </repository>
Charles Chancde9cfc2016-12-14 16:15:09 -080059 <repository>
60 <id>snapshots</id>
61 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
62 <snapshots>
63 <enabled>true</enabled>
64 <updatePolicy>always</updatePolicy>
65 <checksumPolicy>fail</checksumPolicy>
66 </snapshots>
67 </repository>
68 </repositories>
alshabib3b1eadc2016-02-01 17:57:00 -080069</project>