blob: 588f25ebbb5e14d08868dd126f27293fa940c990 [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>
Jenkins6ce180f2021-03-30 10:15:20 +000030 <version>2.4.0-SNAPSHOT</version>
Matteo Scandolocf847b82019-04-26 15:00:00 -070031 <packaging>pom</packaging>
Ari Saha89831742015-06-26 10:31:48 -070032
Ilayda Ozdemir9fdeee72021-02-26 12:24:27 +000033 <properties>
Andrea Campanella0430a502021-05-04 16:35:12 +020034 <sadis.api.version>5.4.0-SNAPSHOT</sadis.api.version>
Jenkins6ce180f2021-03-30 10:15:20 +000035 <aaa.api.version>2.4.0-SNAPSHOT</aaa.api.version>
Ilayda Ozdemir9fdeee72021-02-26 12:24:27 +000036 </properties>
37
Matteo Scandolocf847b82019-04-26 15:00:00 -070038 <modules>
39 <module>app</module>
40 <module>api</module>
41 </modules>
42
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010043 <repositories>
44 <repository>
45 <id>central</id>
46 <name>Central Repository</name>
Daniele Moro3d848232020-01-15 11:06:59 -080047 <url>https://repo.maven.apache.org/maven2</url>
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010048 <layout>default</layout>
49 <snapshots>
50 <enabled>false</enabled>
51 </snapshots>
52 <releases>
53 <enabled>true</enabled>
54 <updatePolicy>always</updatePolicy>
55 <checksumPolicy>fail</checksumPolicy>
56 </releases>
57 </repository>
Amit Ghoshc9ac1e52017-07-28 12:31:18 +010058 <repository>
59 <id>snapshots</id>
60 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
61 <snapshots>
62 <enabled>true</enabled>
63 <updatePolicy>always</updatePolicy>
64 <checksumPolicy>fail</checksumPolicy>
65 </snapshots>
66 </repository>
67 </repositories>
Andrey Pozolotin7afc4d92020-08-24 14:14:33 +020068 <build>
69 <plugins>
70 <!-- SpotBugs Static Analysis -->
71 <plugin>
72 <groupId>com.github.spotbugs</groupId>
73 <artifactId>spotbugs-maven-plugin</artifactId>
74 <version>4.0.4</version>
75 <configuration>
76 <effort>Max</effort>
77 <threshold>Low</threshold>
78 <failOnError>false</failOnError>
Ilayda Ozdemir9fdeee72021-02-26 12:24:27 +000079 <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml
80 </includeFilterFile>
81 <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml
82 </excludeFilterFile>
Andrey Pozolotin7afc4d92020-08-24 14:14:33 +020083 <plugins>
84 <plugin>
85 <groupId>com.h3xstream.findsecbugs</groupId>
86 <artifactId>findsecbugs-plugin</artifactId>
87 <version>1.10.1</version>
88 </plugin>
89 </plugins>
90 </configuration>
91 </plugin>
92 </plugins>
93 </build>
Carmelo Cascone58b53292019-09-30 12:35:31 -070094 <distributionManagement>
95 <snapshotRepository>
96 <id>ossrh</id>
97 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
98 </snapshotRepository>
99 </distributionManagement>
Ari Saha89831742015-06-26 10:31:48 -0700100</project>