alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | cf85aa8 | 2017-08-03 22:46:01 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Foundation |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 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 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
Charles Chan | cde9cfc | 2016-12-14 16:15:09 -0800 | [diff] [blame] | 24 | <artifactId>onos-dependencies</artifactId> |
Matteo Scandolo | 8fa8680 | 2020-03-25 15:26:46 -0700 | [diff] [blame^] | 25 | <version>2.2.2</version> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 26 | </parent> |
| 27 | |
alshabib | 772e158 | 2016-06-01 17:50:05 -0700 | [diff] [blame] | 28 | <groupId>org.opencord</groupId> |
| 29 | <artifactId>mcast</artifactId> |
Jenkins | 66a965a | 2020-03-25 22:45:01 +0000 | [diff] [blame] | 30 | <version>2.1.0-SNAPSHOT</version> |
Daniele Moro | 8ea9e10 | 2020-03-24 18:56:52 +0100 | [diff] [blame] | 31 | <packaging>pom</packaging> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 32 | |
| 33 | <description>CORD Multicast application</description> |
| 34 | |
| 35 | <properties> |
Matteo Scandolo | 8fa8680 | 2020-03-25 15:26:46 -0700 | [diff] [blame^] | 36 | <sadis.api.version>5.0.1</sadis.api.version> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 37 | </properties> |
| 38 | |
Daniele Moro | 8ea9e10 | 2020-03-24 18:56:52 +0100 | [diff] [blame] | 39 | <modules> |
| 40 | <module>api</module> |
| 41 | <module>app</module> |
| 42 | </modules> |
alshabib | 772e158 | 2016-06-01 17:50:05 -0700 | [diff] [blame] | 43 | |
Charles Chan | cde9cfc | 2016-12-14 16:15:09 -0800 | [diff] [blame] | 44 | <repositories> |
| 45 | <repository> |
| 46 | <id>central</id> |
| 47 | <name>Central Repository</name> |
Daniele Moro | 6a28e61 | 2020-01-15 15:17:03 -0800 | [diff] [blame] | 48 | <url>https://repo.maven.apache.org/maven2</url> |
Charles Chan | cde9cfc | 2016-12-14 16:15:09 -0800 | [diff] [blame] | 49 | <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 Chan | cde9cfc | 2016-12-14 16:15:09 -0800 | [diff] [blame] | 59 | <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> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 69 | </project> |