ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Joey Armstrong | 517afab | 2023-01-09 14:22:22 -0500 | [diff] [blame] | 3 | ~ Copyright 2015-2023 Open Networking Foundation (ONF) and the ONF Contributors |
ke han | 81a38b9 | 2017-03-10 18:41:44 +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: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 Scandolo | 8736b67 | 2021-12-16 17:51:00 -0800 | [diff] [blame] | 25 | <version>2.5.5</version> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <groupId>org.opencord</groupId> |
| 29 | <artifactId>onos-app-igmpproxy</artifactId> |
Jenkins | 1d798d3 | 2025-01-17 00:05:39 +0000 | [diff] [blame^] | 30 | <version>2.9.1</version> |
developer | e400c58 | 2020-03-24 19:42:08 +0100 | [diff] [blame] | 31 | <packaging>pom</packaging> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 32 | |
Ilayda Ozdemir | e350510 | 2021-02-23 12:56:15 +0000 | [diff] [blame] | 33 | <properties> |
Jenkins | 1d798d3 | 2025-01-17 00:05:39 +0000 | [diff] [blame^] | 34 | <igmpproxy.api.version>2.9.1</igmpproxy.api.version> |
Ilayda Ozdemir | e350510 | 2021-02-23 12:56:15 +0000 | [diff] [blame] | 35 | </properties> |
| 36 | |
developer | e400c58 | 2020-03-24 19:42:08 +0100 | [diff] [blame] | 37 | <modules> |
developer | e400c58 | 2020-03-24 19:42:08 +0100 | [diff] [blame] | 38 | <module>api</module> |
Andrea Campanella | 26ac21f | 2020-06-25 09:48:15 +0200 | [diff] [blame] | 39 | <module>app</module> |
developer | e400c58 | 2020-03-24 19:42:08 +0100 | [diff] [blame] | 40 | </modules> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 41 | |
Andrea Campanella | 26ac21f | 2020-06-25 09:48:15 +0200 | [diff] [blame] | 42 | <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 Pozolotin | f8b7d9c | 2020-08-24 14:56:59 +0200 | [diff] [blame] | 51 | <!-- SpotBugs Static Analysis --> |
| 52 | <plugin> |
| 53 | <groupId>com.github.spotbugs</groupId> |
| 54 | <artifactId>spotbugs-maven-plugin</artifactId> |
Joey Armstrong | 4129bf4 | 2023-06-08 18:45:22 -0400 | [diff] [blame] | 55 | <version>4.7.3.4</version> |
Andrey Pozolotin | f8b7d9c | 2020-08-24 14:56:59 +0200 | [diff] [blame] | 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> |
Joey Armstrong | 4129bf4 | 2023-06-08 18:45:22 -0400 | [diff] [blame] | 66 | <version>1.12.0</version> |
Andrey Pozolotin | f8b7d9c | 2020-08-24 14:56:59 +0200 | [diff] [blame] | 67 | </plugin> |
| 68 | </plugins> |
| 69 | </configuration> |
| 70 | </plugin> |
Andrea Campanella | 26ac21f | 2020-06-25 09:48:15 +0200 | [diff] [blame] | 71 | </plugins> |
| 72 | </build> |
| 73 | |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 74 | <repositories> |
| 75 | <repository> |
| 76 | <id>central</id> |
| 77 | <name>Central Repository</name> |
Daniele Moro | afbaf57 | 2020-01-15 15:59:09 -0800 | [diff] [blame] | 78 | <url>https://repo.maven.apache.org/maven2</url> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 79 | <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 han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 89 | <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 Campanella | c59be48 | 2021-06-03 11:08:28 +0200 | [diff] [blame] | 99 | <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> |
developer | e400c58 | 2020-03-24 19:42:08 +0100 | [diff] [blame] | 110 | <distributionManagement> |
| 111 | <snapshotRepository> |
| 112 | <id>ossrh</id> |
| 113 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 114 | </snapshotRepository> |
| 115 | </distributionManagement> |
ke han | 81a38b9 | 2017-03-10 18:41:44 +0800 | [diff] [blame] | 116 | </project> |