blob: 4db388fa521d176b089d6753e492fe1ee3209905 [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>
Esin Karaman09b41e52020-06-01 10:52:55 +000025 <version>2.2.3-b1</version>
ke han81a38b92017-03-10 18:41:44 +080026 </parent>
27
28 <groupId>org.opencord</groupId>
29 <artifactId>onos-app-igmpproxy</artifactId>
Jenkins72a00132020-07-01 12:56:21 +000030 <version>2.1.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>
developere400c582020-03-24 19:42:08 +010034 <module>api</module>
Andrea Campanella26ac21f2020-06-25 09:48:15 +020035 <module>app</module>
developere400c582020-03-24 19:42:08 +010036 </modules>
ke han81a38b92017-03-10 18:41:44 +080037
Andrea Campanella26ac21f2020-06-25 09:48:15 +020038 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-checkstyle-plugin</artifactId>
43 <configuration>
44 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
45 </configuration>
46 </plugin>
47 </plugins>
48 </build>
49
ke han81a38b92017-03-10 18:41:44 +080050 <repositories>
51 <repository>
52 <id>central</id>
53 <name>Central Repository</name>
Daniele Moroafbaf572020-01-15 15:59:09 -080054 <url>https://repo.maven.apache.org/maven2</url>
ke han81a38b92017-03-10 18:41:44 +080055 <layout>default</layout>
56 <snapshots>
57 <enabled>false</enabled>
58 </snapshots>
59 <releases>
60 <enabled>true</enabled>
61 <updatePolicy>always</updatePolicy>
62 <checksumPolicy>fail</checksumPolicy>
63 </releases>
64 </repository>
ke han81a38b92017-03-10 18:41:44 +080065 <repository>
66 <id>snapshots</id>
67 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
68 <snapshots>
69 <enabled>true</enabled>
70 <updatePolicy>always</updatePolicy>
71 <checksumPolicy>fail</checksumPolicy>
72 </snapshots>
73 </repository>
74 </repositories>
developere400c582020-03-24 19:42:08 +010075 <distributionManagement>
76 <snapshotRepository>
77 <id>ossrh</id>
78 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
79 </snapshotRepository>
80 </distributionManagement>
ke han81a38b92017-03-10 18:41:44 +080081</project>