blob: 8333b46cbfd35e57d4b22f5bca01fa39622369d8 [file] [log] [blame]
Ari Saha89831742015-06-26 10:31:48 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor4e33be22017-08-03 22:45:46 -07003 ~ Copyright 2015-present Open Networking Foundation
Ari Saha89831742015-06-26 10:31:48 -07004 ~
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
alshabib5f979512016-06-21 13:14:01 +020015 ~ limitations under the License.
Ari Saha89831742015-06-26 10:31:48 -070016 -->
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
Carmelo Casconea3061202019-11-14 14:19:13 -080022 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-dependencies</artifactId>
Andrea Campanella76ae68d2020-10-14 11:16:37 +020025 <version>2.2.6</version>
Carmelo Casconea3061202019-11-14 14:19:13 -080026 </parent>
27
alshabib6d527452016-06-01 18:00:47 -070028 <groupId>org.opencord</groupId>
29 <artifactId>aaa</artifactId>
Jenkins32bbc4f2020-12-10 20:01:57 +000030 <version>2.2.0</version>
Matteo Scandolocf847b82019-04-26 15:00:00 -070031 <packaging>pom</packaging>
Ari Saha89831742015-06-26 10:31:48 -070032
Matteo Scandolocf847b82019-04-26 15:00:00 -070033 <modules>
34 <module>app</module>
35 <module>api</module>
36 </modules>
37
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010038 <repositories>
39 <repository>
40 <id>central</id>
41 <name>Central Repository</name>
Daniele Moro3d848232020-01-15 11:06:59 -080042 <url>https://repo.maven.apache.org/maven2</url>
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010043 <layout>default</layout>
44 <snapshots>
45 <enabled>false</enabled>
46 </snapshots>
47 <releases>
48 <enabled>true</enabled>
49 <updatePolicy>always</updatePolicy>
50 <checksumPolicy>fail</checksumPolicy>
51 </releases>
52 </repository>
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010053 <repository>
54 <id>snapshots</id>
55 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
56 <snapshots>
57 <enabled>true</enabled>
58 <updatePolicy>always</updatePolicy>
59 <checksumPolicy>fail</checksumPolicy>
60 </snapshots>
61 </repository>
62 </repositories>
Andrey Pozolotin7afc4d92020-08-24 14:14:33 +020063 <build>
64 <plugins>
65 <!-- SpotBugs Static Analysis -->
66 <plugin>
67 <groupId>com.github.spotbugs</groupId>
68 <artifactId>spotbugs-maven-plugin</artifactId>
69 <version>4.0.4</version>
70 <configuration>
71 <effort>Max</effort>
72 <threshold>Low</threshold>
73 <failOnError>false</failOnError>
74 <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile>
75 <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile>
76 <plugins>
77 <plugin>
78 <groupId>com.h3xstream.findsecbugs</groupId>
79 <artifactId>findsecbugs-plugin</artifactId>
80 <version>1.10.1</version>
81 </plugin>
82 </plugins>
83 </configuration>
84 </plugin>
85 </plugins>
86 </build>
Carmelo Cascone58b53292019-09-30 12:35:31 -070087 <distributionManagement>
88 <snapshotRepository>
89 <id>ossrh</id>
90 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
91 </snapshotRepository>
92 </distributionManagement>
Ari Saha89831742015-06-26 10:31:48 -070093</project>