Daniele Moro | 94660a0 | 2019-12-02 12:02:07 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Joey Armstrong | 0964a2c | 2023-01-05 14:26:05 -0500 | [diff] [blame] | 3 | ~ Copyright 2019-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Daniele Moro | 94660a0 | 2019-12-02 12:02:07 -0800 | [diff] [blame] | 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> |
Andrea Campanella | 754b3e4 | 2021-12-17 14:39:19 +0100 | [diff] [blame] | 25 | <version>2.5.5</version> |
Daniele Moro | 94660a0 | 2019-12-02 12:02:07 -0800 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <groupId>org.opencord</groupId> |
| 29 | <artifactId>bng</artifactId> |
Jenkins | 4ae8508 | 2023-06-14 13:15:34 +0000 | [diff] [blame^] | 30 | <version>2.5.0</version> |
Daniele Moro | 94660a0 | 2019-12-02 12:02:07 -0800 | [diff] [blame] | 31 | <packaging>pom</packaging> |
| 32 | |
| 33 | <description>BNG Control app</description> |
| 34 | <url>http://opencord.org</url> |
| 35 | |
| 36 | <properties> |
Joey Armstrong | fcbcc71 | 2023-06-13 15:14:32 -0400 | [diff] [blame] | 37 | <sadis.api.version>5.11.1</sadis.api.version> |
| 38 | <olt.api.version>5.2.4</olt.api.version> |
Daniele Moro | 94660a0 | 2019-12-02 12:02:07 -0800 | [diff] [blame] | 39 | </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 Moro | ad7057d | 2020-01-15 10:54:37 -0800 | [diff] [blame] | 50 | <url>https://repo.maven.apache.org/maven2</url> |
Daniele Moro | 94660a0 | 2019-12-02 12:02:07 -0800 | [diff] [blame] | 51 | <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 Moro | 94660a0 | 2019-12-02 12:02:07 -0800 | [diff] [blame] | 61 | <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 Campanella | 2de17c5 | 2021-06-03 11:08:12 +0200 | [diff] [blame] | 71 | <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 Pozolotin | 5028e8e | 2020-08-24 14:22:59 +0200 | [diff] [blame] | 82 | <build> |
| 83 | <plugins> |
| 84 | <!-- SpotBugs Static Analysis --> |
| 85 | <plugin> |
| 86 | <groupId>com.github.spotbugs</groupId> |
| 87 | <artifactId>spotbugs-maven-plugin</artifactId> |
Joey Armstrong | fcbcc71 | 2023-06-13 15:14:32 -0400 | [diff] [blame] | 88 | <version>4.7.3.4</version> |
Andrey Pozolotin | 5028e8e | 2020-08-24 14:22:59 +0200 | [diff] [blame] | 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> |
Joey Armstrong | fcbcc71 | 2023-06-13 15:14:32 -0400 | [diff] [blame] | 99 | <version>1.12.0</version> |
Andrey Pozolotin | 5028e8e | 2020-08-24 14:22:59 +0200 | [diff] [blame] | 100 | </plugin> |
| 101 | </plugins> |
| 102 | </configuration> |
| 103 | </plugin> |
| 104 | </plugins> |
| 105 | </build> |
Daniele Moro | 94660a0 | 2019-12-02 12:02:07 -0800 | [diff] [blame] | 106 | </project> |