blob: 38b0488d3135625524b0c337ceedc81353dddc46 [file] [log] [blame]
ke han81a38b92017-03-10 18:41:44 +08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor4d084702017-08-03 22:45:58 -07003 ~ Copyright 2015-present Open Networking Foundation
ke han81a38b92017-03-10 18:41:44 +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:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xmlns="http://maven.apache.org/POM/4.0.0"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-dependencies</artifactId>
Matteo Scandolobb6add62020-03-25 16:12:30 -070025 <version>2.2.2</version>
ke han81a38b92017-03-10 18:41:44 +080026 </parent>
27
28 <groupId>org.opencord</groupId>
29 <artifactId>onos-app-igmpproxy</artifactId>
Jenkinsfedce552020-03-25 23:23:18 +000030 <version>2.0.0</version>
developere400c582020-03-24 19:42:08 +010031 <packaging>pom</packaging>
ke han81a38b92017-03-10 18:41:44 +080032
developere400c582020-03-24 19:42:08 +010033 <modules>
34 <module>app</module>
35 <module>api</module>
36 </modules>
ke han81a38b92017-03-10 18:41:44 +080037
38 <repositories>
39 <repository>
40 <id>central</id>
41 <name>Central Repository</name>
Daniele Moroafbaf572020-01-15 15:59:09 -080042 <url>https://repo.maven.apache.org/maven2</url>
ke han81a38b92017-03-10 18:41:44 +080043 <layout>default</layout>
44 <snapshots>
45 <enabled>false</enabled>
46 </snapshots>
47 <releases>
48 <enabled>true</enabled>
49 <updatePolicy>always</updatePolicy>
50 <checksumPolicy>fail</checksumPolicy>
51 </releases>
52 </repository>
ke han81a38b92017-03-10 18:41:44 +080053 <repository>
54 <id>snapshots</id>
55 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
56 <snapshots>
57 <enabled>true</enabled>
58 <updatePolicy>always</updatePolicy>
59 <checksumPolicy>fail</checksumPolicy>
60 </snapshots>
61 </repository>
62 </repositories>
developere400c582020-03-24 19:42:08 +010063 <distributionManagement>
64 <snapshotRepository>
65 <id>ossrh</id>
66 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
67 </snapshotRepository>
68 </distributionManagement>
ke han81a38b92017-03-10 18:41:44 +080069</project>