blob: a56a4c91c8adfcd85cc41be144ba38dbb867967d [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>
Andrea Campanellae41bdc52020-07-07 10:26:22 +020025 <version>2.2.3</version>
ke han81a38b92017-03-10 18:41:44 +080026 </parent>
27
28 <groupId>org.opencord</groupId>
29 <artifactId>onos-app-igmpproxy</artifactId>
Jenkins4fecf0f2020-07-01 12:56:31 +000030 <version>2.2.0-SNAPSHOT</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>
Andrey Pozolotinf8b7d9c2020-08-24 14:56:59 +020047 <!-- SpotBugs Static Analysis -->
48 <plugin>
49 <groupId>com.github.spotbugs</groupId>
50 <artifactId>spotbugs-maven-plugin</artifactId>
51 <version>4.0.4</version>
52 <configuration>
53 <effort>Max</effort>
54 <threshold>Low</threshold>
55 <failOnError>false</failOnError>
56 <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile>
57 <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile>
58 <plugins>
59 <plugin>
60 <groupId>com.h3xstream.findsecbugs</groupId>
61 <artifactId>findsecbugs-plugin</artifactId>
62 <version>1.10.1</version>
63 </plugin>
64 </plugins>
65 </configuration>
66 </plugin>
Andrea Campanella26ac21f2020-06-25 09:48:15 +020067 </plugins>
68 </build>
69
ke han81a38b92017-03-10 18:41:44 +080070 <repositories>
71 <repository>
72 <id>central</id>
73 <name>Central Repository</name>
Daniele Moroafbaf572020-01-15 15:59:09 -080074 <url>https://repo.maven.apache.org/maven2</url>
ke han81a38b92017-03-10 18:41:44 +080075 <layout>default</layout>
76 <snapshots>
77 <enabled>false</enabled>
78 </snapshots>
79 <releases>
80 <enabled>true</enabled>
81 <updatePolicy>always</updatePolicy>
82 <checksumPolicy>fail</checksumPolicy>
83 </releases>
84 </repository>
ke han81a38b92017-03-10 18:41:44 +080085 <repository>
86 <id>snapshots</id>
87 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
88 <snapshots>
89 <enabled>true</enabled>
90 <updatePolicy>always</updatePolicy>
91 <checksumPolicy>fail</checksumPolicy>
92 </snapshots>
93 </repository>
94 </repositories>
developere400c582020-03-24 19:42:08 +010095 <distributionManagement>
96 <snapshotRepository>
97 <id>ossrh</id>
98 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
99 </snapshotRepository>
100 </distributionManagement>
ke han81a38b92017-03-10 18:41:44 +0800101</project>