blob: 4cf0720860a66c334e094e23fccbb2566336b0d7 [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 Scandolo8fa86802020-03-25 15:26:46 -070025 <version>2.2.2</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>
Jenkins8f97d582020-07-01 10:40:36 +000030 <version>2.2.0-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 Campanella11a18772020-07-01 10:13:55 +020036 <sadis.api.version>5.1.0</sadis.api.version>
alshabib3b1eadc2016-02-01 17:57:00 -080037 </properties>
38
Daniele Moro8ea9e102020-03-24 18:56:52 +010039 <modules>
40 <module>api</module>
41 <module>app</module>
42 </modules>
alshabib772e1582016-06-01 17:50:05 -070043
Andrey Pozolotin334a6862020-08-24 15:01:16 +020044 <build>
45 <plugins>
46 <plugin>
47 <groupId>org.apache.maven.plugins</groupId>
48 <artifactId>maven-checkstyle-plugin</artifactId>
49 <configuration>
50 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
51 </configuration>
52 </plugin>
53 <!-- SpotBugs Static Analysis -->
54 <plugin>
55 <groupId>com.github.spotbugs</groupId>
56 <artifactId>spotbugs-maven-plugin</artifactId>
57 <version>4.0.4</version>
58 <configuration>
59 <effort>Max</effort>
60 <threshold>Low</threshold>
61 <failOnError>true</failOnError>
62 <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile>
63 <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile>
64 <plugins>
65 <plugin>
66 <groupId>com.h3xstream.findsecbugs</groupId>
67 <artifactId>findsecbugs-plugin</artifactId>
68 <version>1.10.1</version>
69 </plugin>
70 </plugins>
71 </configuration>
72 </plugin>
73 </plugins>
74 </build>
75
Charles Chancde9cfc2016-12-14 16:15:09 -080076 <repositories>
77 <repository>
78 <id>central</id>
79 <name>Central Repository</name>
Daniele Moro6a28e612020-01-15 15:17:03 -080080 <url>https://repo.maven.apache.org/maven2</url>
Charles Chancde9cfc2016-12-14 16:15:09 -080081 <layout>default</layout>
82 <snapshots>
83 <enabled>false</enabled>
84 </snapshots>
85 <releases>
86 <enabled>true</enabled>
87 <updatePolicy>always</updatePolicy>
88 <checksumPolicy>fail</checksumPolicy>
89 </releases>
90 </repository>
Charles Chancde9cfc2016-12-14 16:15:09 -080091 <repository>
92 <id>snapshots</id>
93 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
94 <snapshots>
95 <enabled>true</enabled>
96 <updatePolicy>always</updatePolicy>
97 <checksumPolicy>fail</checksumPolicy>
98 </snapshots>
99 </repository>
100 </repositories>
alshabib3b1eadc2016-02-01 17:57:00 -0800101</project>