blob: 615387634f52cc5aed1403e9fba6338e9b3aad23 [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 Campanellac59be482021-06-03 11:08:28 +020025 <version>2.5.2-SNAPSHOT</version>
ke han81a38b92017-03-10 18:41:44 +080026 </parent>
27
28 <groupId>org.opencord</groupId>
29 <artifactId>onos-app-igmpproxy</artifactId>
Jenkins2a47d832021-03-30 11:37:01 +000030 <version>2.3.0-SNAPSHOT</version>
developere400c582020-03-24 19:42:08 +010031 <packaging>pom</packaging>
ke han81a38b92017-03-10 18:41:44 +080032
Ilayda Ozdemire3505102021-02-23 12:56:15 +000033 <properties>
Jenkins2a47d832021-03-30 11:37:01 +000034 <igmpproxy.api.version>2.3.0-SNAPSHOT</igmpproxy.api.version>
Ilayda Ozdemire3505102021-02-23 12:56:15 +000035 </properties>
36
developere400c582020-03-24 19:42:08 +010037 <modules>
developere400c582020-03-24 19:42:08 +010038 <module>api</module>
Andrea Campanella26ac21f2020-06-25 09:48:15 +020039 <module>app</module>
developere400c582020-03-24 19:42:08 +010040 </modules>
ke han81a38b92017-03-10 18:41:44 +080041
Andrea Campanella26ac21f2020-06-25 09:48:15 +020042 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-checkstyle-plugin</artifactId>
47 <configuration>
48 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
49 </configuration>
50 </plugin>
Andrey Pozolotinf8b7d9c2020-08-24 14:56:59 +020051 <!-- SpotBugs Static Analysis -->
52 <plugin>
53 <groupId>com.github.spotbugs</groupId>
54 <artifactId>spotbugs-maven-plugin</artifactId>
55 <version>4.0.4</version>
56 <configuration>
57 <effort>Max</effort>
58 <threshold>Low</threshold>
59 <failOnError>false</failOnError>
60 <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile>
61 <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile>
62 <plugins>
63 <plugin>
64 <groupId>com.h3xstream.findsecbugs</groupId>
65 <artifactId>findsecbugs-plugin</artifactId>
66 <version>1.10.1</version>
67 </plugin>
68 </plugins>
69 </configuration>
70 </plugin>
Andrea Campanella26ac21f2020-06-25 09:48:15 +020071 </plugins>
72 </build>
73
ke han81a38b92017-03-10 18:41:44 +080074 <repositories>
75 <repository>
76 <id>central</id>
77 <name>Central Repository</name>
Daniele Moroafbaf572020-01-15 15:59:09 -080078 <url>https://repo.maven.apache.org/maven2</url>
ke han81a38b92017-03-10 18:41:44 +080079 <layout>default</layout>
80 <snapshots>
81 <enabled>false</enabled>
82 </snapshots>
83 <releases>
84 <enabled>true</enabled>
85 <updatePolicy>always</updatePolicy>
86 <checksumPolicy>fail</checksumPolicy>
87 </releases>
88 </repository>
ke han81a38b92017-03-10 18:41:44 +080089 <repository>
90 <id>snapshots</id>
91 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
92 <snapshots>
93 <enabled>true</enabled>
94 <updatePolicy>always</updatePolicy>
95 <checksumPolicy>fail</checksumPolicy>
96 </snapshots>
97 </repository>
98 </repositories>
Andrea Campanellac59be482021-06-03 11:08:28 +020099 <pluginRepositories>
100 <pluginRepository>
101 <id>sonatype-snapshots</id>
102 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
103 <snapshots>
104 <enabled>true</enabled>
105 <updatePolicy>always</updatePolicy>
106 <checksumPolicy>fail</checksumPolicy>
107 </snapshots>
108 </pluginRepository>
109 </pluginRepositories>
developere400c582020-03-24 19:42:08 +0100110 <distributionManagement>
111 <snapshotRepository>
112 <id>ossrh</id>
113 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
114 </snapshotRepository>
115 </distributionManagement>
ke han81a38b92017-03-10 18:41:44 +0800116</project>