blob: 7da648130368820c93b4374f9b7b75db4ef9387f [file] [log] [blame]
Daniele Moro94660a02019-12-02 12:02:07 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2019-present Open Networking Foundation
4 ~
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/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-dependencies</artifactId>
Matteo Scandoloba488222021-07-09 14:49:04 -070025 <version>2.5.2</version>
Daniele Moro94660a02019-12-02 12:02:07 -080026 </parent>
27
28 <groupId>org.opencord</groupId>
29 <artifactId>bng</artifactId>
Jenkinsacc63cd2021-07-09 22:16:03 +000030 <version>2.1.0</version>
Daniele Moro94660a02019-12-02 12:02:07 -080031 <packaging>pom</packaging>
32
33 <description>BNG Control app</description>
34 <url>http://opencord.org</url>
35
36 <properties>
Matteo Scandoloba488222021-07-09 14:49:04 -070037 <sadis.api.version>5.4.0</sadis.api.version>
Andrea Campanellac871dbb2021-03-30 16:58:31 +020038 <olt.api.version>4.4.0</olt.api.version>
Daniele Moro94660a02019-12-02 12:02:07 -080039 </properties>
40
41 <modules>
42 <module>app</module>
43 <module>api</module>
44 </modules>
45
46 <repositories>
47 <repository>
48 <id>central</id>
49 <name>Central Repository</name>
Daniele Moroad7057d2020-01-15 10:54:37 -080050 <url>https://repo.maven.apache.org/maven2</url>
Daniele Moro94660a02019-12-02 12:02:07 -080051 <layout>default</layout>
52 <snapshots>
53 <enabled>false</enabled>
54 </snapshots>
55 <releases>
56 <enabled>true</enabled>
57 <updatePolicy>always</updatePolicy>
58 <checksumPolicy>fail</checksumPolicy>
59 </releases>
60 </repository>
Daniele Moro94660a02019-12-02 12:02:07 -080061 <repository>
62 <id>snapshots</id>
63 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
64 <snapshots>
65 <enabled>true</enabled>
66 <updatePolicy>always</updatePolicy>
67 <checksumPolicy>fail</checksumPolicy>
68 </snapshots>
69 </repository>
70 </repositories>
Andrea Campanella2de17c52021-06-03 11:08:12 +020071 <pluginRepositories>
72 <pluginRepository>
73 <id>sonatype-snapshots</id>
74 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
75 <snapshots>
76 <enabled>true</enabled>
77 <updatePolicy>always</updatePolicy>
78 <checksumPolicy>fail</checksumPolicy>
79 </snapshots>
80 </pluginRepository>
81 </pluginRepositories>
Andrey Pozolotin5028e8e2020-08-24 14:22:59 +020082 <build>
83 <plugins>
84 <!-- SpotBugs Static Analysis -->
85 <plugin>
86 <groupId>com.github.spotbugs</groupId>
87 <artifactId>spotbugs-maven-plugin</artifactId>
88 <version>4.0.4</version>
89 <configuration>
90 <effort>Max</effort>
91 <threshold>Low</threshold>
92 <failOnError>false</failOnError>
93 <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile>
94 <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile>
95 <plugins>
96 <plugin>
97 <groupId>com.h3xstream.findsecbugs</groupId>
98 <artifactId>findsecbugs-plugin</artifactId>
99 <version>1.10.1</version>
100 </plugin>
101 </plugins>
102 </configuration>
103 </plugin>
104 </plugins>
105 </build>
Daniele Moro94660a02019-12-02 12:02:07 -0800106</project>