alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | cf85aa8 | 2017-08-03 22:46:01 -0700 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Foundation |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -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="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
Charles Chan | cde9cfc | 2016-12-14 16:15:09 -0800 | [diff] [blame] | 24 | <artifactId>onos-dependencies</artifactId> |
Matteo Scandolo | 4da805e | 2021-07-09 13:26:34 -0700 | [diff] [blame] | 25 | <version>2.5.2</version> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 26 | </parent> |
| 27 | |
alshabib | 772e158 | 2016-06-01 17:50:05 -0700 | [diff] [blame] | 28 | <groupId>org.opencord</groupId> |
| 29 | <artifactId>mcast</artifactId> |
Jenkins | 5fbe7d0 | 2021-07-09 21:53:05 +0000 | [diff] [blame^] | 30 | <version>2.4.0</version> |
Daniele Moro | 8ea9e10 | 2020-03-24 18:56:52 +0100 | [diff] [blame] | 31 | <packaging>pom</packaging> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 32 | |
| 33 | <description>CORD Multicast application</description> |
| 34 | |
| 35 | <properties> |
Matteo Scandolo | 4da805e | 2021-07-09 13:26:34 -0700 | [diff] [blame] | 36 | <sadis.api.version>5.4.0</sadis.api.version> |
Jenkins | 5fbe7d0 | 2021-07-09 21:53:05 +0000 | [diff] [blame^] | 37 | <mcast.api.version>2.4.0</mcast.api.version> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 38 | </properties> |
| 39 | |
Daniele Moro | 8ea9e10 | 2020-03-24 18:56:52 +0100 | [diff] [blame] | 40 | <modules> |
| 41 | <module>api</module> |
| 42 | <module>app</module> |
| 43 | </modules> |
alshabib | 772e158 | 2016-06-01 17:50:05 -0700 | [diff] [blame] | 44 | |
Andrey Pozolotin | 334a686 | 2020-08-24 15:01:16 +0200 | [diff] [blame] | 45 | <build> |
| 46 | <plugins> |
| 47 | <plugin> |
| 48 | <groupId>org.apache.maven.plugins</groupId> |
| 49 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 50 | <configuration> |
| 51 | <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories> |
| 52 | </configuration> |
| 53 | </plugin> |
| 54 | <!-- SpotBugs Static Analysis --> |
| 55 | <plugin> |
| 56 | <groupId>com.github.spotbugs</groupId> |
| 57 | <artifactId>spotbugs-maven-plugin</artifactId> |
| 58 | <version>4.0.4</version> |
| 59 | <configuration> |
| 60 | <effort>Max</effort> |
| 61 | <threshold>Low</threshold> |
Andrey Pozolotin | 83adaa1 | 2020-08-25 12:17:20 +0200 | [diff] [blame] | 62 | <failOnError>false</failOnError> |
Andrey Pozolotin | 334a686 | 2020-08-24 15:01:16 +0200 | [diff] [blame] | 63 | <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile> |
| 64 | <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile> |
| 65 | <plugins> |
| 66 | <plugin> |
| 67 | <groupId>com.h3xstream.findsecbugs</groupId> |
| 68 | <artifactId>findsecbugs-plugin</artifactId> |
| 69 | <version>1.10.1</version> |
| 70 | </plugin> |
| 71 | </plugins> |
| 72 | </configuration> |
| 73 | </plugin> |
| 74 | </plugins> |
| 75 | </build> |
| 76 | |
Charles Chan | cde9cfc | 2016-12-14 16:15:09 -0800 | [diff] [blame] | 77 | <repositories> |
| 78 | <repository> |
| 79 | <id>central</id> |
| 80 | <name>Central Repository</name> |
Daniele Moro | 6a28e61 | 2020-01-15 15:17:03 -0800 | [diff] [blame] | 81 | <url>https://repo.maven.apache.org/maven2</url> |
Charles Chan | cde9cfc | 2016-12-14 16:15:09 -0800 | [diff] [blame] | 82 | <layout>default</layout> |
| 83 | <snapshots> |
| 84 | <enabled>false</enabled> |
| 85 | </snapshots> |
| 86 | <releases> |
| 87 | <enabled>true</enabled> |
| 88 | <updatePolicy>always</updatePolicy> |
| 89 | <checksumPolicy>fail</checksumPolicy> |
| 90 | </releases> |
| 91 | </repository> |
Charles Chan | cde9cfc | 2016-12-14 16:15:09 -0800 | [diff] [blame] | 92 | <repository> |
| 93 | <id>snapshots</id> |
| 94 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 95 | <snapshots> |
| 96 | <enabled>true</enabled> |
| 97 | <updatePolicy>always</updatePolicy> |
| 98 | <checksumPolicy>fail</checksumPolicy> |
| 99 | </snapshots> |
| 100 | </repository> |
| 101 | </repositories> |
Andrea Campanella | 09db433 | 2021-06-03 11:08:57 +0200 | [diff] [blame] | 102 | <pluginRepositories> |
| 103 | <pluginRepository> |
| 104 | <id>sonatype-snapshots</id> |
| 105 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 106 | <snapshots> |
| 107 | <enabled>true</enabled> |
| 108 | <updatePolicy>always</updatePolicy> |
| 109 | <checksumPolicy>fail</checksumPolicy> |
| 110 | </snapshots> |
| 111 | </pluginRepository> |
| 112 | </pluginRepositories> |
alshabib | 3b1eadc | 2016-02-01 17:57:00 -0800 | [diff] [blame] | 113 | </project> |