blob: fb8047849de28626bff30fa38e0369bb9ca07bea [file] [log] [blame]
David K. Bainbridgeeda2b052017-07-12 09:41:04 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor180c1092017-08-03 22:46:14 -07003 ~ Copyright 2017-present Open Networking Foundation
David K. Bainbridgeeda2b052017-07-12 09:41:04 -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
Jonathan Hart275ee252018-05-02 17:30:05 -070015 ~ limitations under the License.
Amit Ghoshc29c7a92017-08-01 09:59:13 +010016 -->
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/xsd/maven-4.0.0.xsd">
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070020 <modelVersion>4.0.0</modelVersion>
21
Carmelo Cascone3d87d5f2019-11-14 14:19:12 -080022 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-dependencies</artifactId>
Jenkins66b08be2020-12-08 22:32:14 +000025 <version>2.2.6</version>
Carmelo Cascone3d87d5f2019-11-14 14:19:12 -080026 </parent>
27
Amit Ghosha65d7032017-07-31 22:39:59 +010028 <groupId>org.opencord</groupId>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070029 <artifactId>sadis</artifactId>
Jenkins66b08be2020-12-08 22:32:14 +000030 <version>5.2.0</version>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010031 <packaging>pom</packaging>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070032
33 <properties>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070034 <onos.app.name>org.opencord.sadis</onos.app.name>
35 <onos.app.category>Utility</onos.app.category>
Carmelo Cascone34059852019-09-30 19:33:00 -070036 <onos.app.title>
37 Subscriber and Access Device Information Service
38 </onos.app.title>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070039 <onos.app.origin>Open Networking Laboratory</onos.app.origin>
40 <onos.app.url>http://opencord.org</onos.app.url>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070041 </properties>
42
Amit Ghoshc29c7a92017-08-01 09:59:13 +010043 <modules>
44 <module>api</module>
45 <module>app</module>
46 </modules>
47
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070048 <dependencies>
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onos-api</artifactId>
52 <version>${onos.version}</version>
Carmelo Cascone34059852019-09-30 19:33:00 -070053 <scope>provided</scope>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070054 </dependency>
55
56 <dependency>
57 <groupId>org.onosproject</groupId>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010058 <artifactId>onlab-misc</artifactId>
59 <version>${onos.version}</version>
Carmelo Cascone34059852019-09-30 19:33:00 -070060 <scope>provided</scope>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010061 </dependency>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070062 </dependencies>
Andrey Pozolotin642a93f2020-08-14 17:19:48 +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>
Andrea Campanella36950212020-08-25 11:20:04 +020073 <failOnError>false</failOnError>
Andrey Pozolotin642a93f2020-08-14 17:19:48 +020074 <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>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010087 <repositories>
88 <repository>
89 <id>central</id>
90 <name>Central Repository</name>
Daniele Morob8930552020-01-15 11:14:20 -080091 <url>https://repo.maven.apache.org/maven2</url>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010092 <layout>default</layout>
93 <snapshots>
94 <enabled>false</enabled>
95 </snapshots>
96 <releases>
97 <enabled>true</enabled>
98 <updatePolicy>always</updatePolicy>
99 <checksumPolicy>fail</checksumPolicy>
100 </releases>
101 </repository>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -0700102
Amit Ghoshc29c7a92017-08-01 09:59:13 +0100103 <repository>
104 <id>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 </repository>
112 </repositories>
Carmelo Cascone34059852019-09-30 19:33:00 -0700113
Matteo Scandoloc628ae82019-10-31 09:06:18 -0700114 <distributionManagement>
115 <snapshotRepository>
116 <id>ossrh</id>
117 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
118 </snapshotRepository>
119 </distributionManagement>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -0700120</project>