blob: 2117ea34389f7b9f55458ecc5b6fe42ae62b3bdf [file] [log] [blame]
alshabib3b1eadc2016-02-01 17:57:00 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connorcf85aa82017-08-03 22:46:01 -07003 ~ Copyright 2016-present Open Networking Foundation
alshabib3b1eadc2016-02-01 17:57:00 -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="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 Chancde9cfc2016-12-14 16:15:09 -080024 <artifactId>onos-dependencies</artifactId>
Matteo Scandoloe0209212021-12-16 17:52:39 -080025 <version>2.5.5</version>
alshabib3b1eadc2016-02-01 17:57:00 -080026 </parent>
27
alshabib772e1582016-06-01 17:50:05 -070028 <groupId>org.opencord</groupId>
29 <artifactId>mcast</artifactId>
Jenkins45b2a232022-06-30 12:15:48 +000030 <version>2.7.0-SNAPSHOT-SNAPSHOT</version>
Daniele Moro8ea9e102020-03-24 18:56:52 +010031 <packaging>pom</packaging>
alshabib3b1eadc2016-02-01 17:57:00 -080032
33 <description>CORD Multicast application</description>
34
35 <properties>
Andrea Campanella51aa4d62022-06-30 13:44:19 +020036 <sadis.api.version>5.6.0</sadis.api.version>
Jenkins45b2a232022-06-30 12:15:48 +000037 <mcast.api.version>2.7.0-SNAPSHOT-SNAPSHOT</mcast.api.version>
alshabib3b1eadc2016-02-01 17:57:00 -080038 </properties>
39
Daniele Moro8ea9e102020-03-24 18:56:52 +010040 <modules>
41 <module>api</module>
42 <module>app</module>
43 </modules>
alshabib772e1582016-06-01 17:50:05 -070044
Andrey Pozolotin334a6862020-08-24 15:01:16 +020045 <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 Pozolotin83adaa12020-08-25 12:17:20 +020062 <failOnError>false</failOnError>
Andrey Pozolotin334a6862020-08-24 15:01:16 +020063 <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 Chancde9cfc2016-12-14 16:15:09 -080077 <repositories>
78 <repository>
79 <id>central</id>
80 <name>Central Repository</name>
Daniele Moro6a28e612020-01-15 15:17:03 -080081 <url>https://repo.maven.apache.org/maven2</url>
Charles Chancde9cfc2016-12-14 16:15:09 -080082 <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 Chancde9cfc2016-12-14 16:15:09 -080092 <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 Campanella09db4332021-06-03 11:08:57 +0200102 <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>
alshabib3b1eadc2016-02-01 17:57:00 -0800113</project>