Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
shivasubedi | 8df61a9 | 2021-06-16 14:43:18 +0100 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Copyright (C) 2021 Pantheon.tech |
| 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 23 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | <groupId>org.onap.cps</groupId> |
| 27 | <artifactId>spotbugs</artifactId> |
ToineSiebelink | ae74cfd | 2022-03-21 16:17:23 +0000 | [diff] [blame^] | 28 | <version>3.1.0-SNAPSHOT</version> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 29 | |
| 30 | <properties> |
| 31 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
| 32 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> |
| 33 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> |
| 34 | </properties> |
| 35 | |
| 36 | <distributionManagement> |
| 37 | <repository> |
| 38 | <id>ecomp-releases</id> |
| 39 | <name>ECOMP Release Repository</name> |
| 40 | <url>${nexusproxy}${releaseNexusPath}</url> |
| 41 | </repository> |
| 42 | <snapshotRepository> |
| 43 | <id>ecomp-snapshots</id> |
| 44 | <name>ECOMP Snapshot Repository</name> |
| 45 | <url>${nexusproxy}${snapshotNexusPath}</url> |
| 46 | </snapshotRepository> |
| 47 | </distributionManagement> |
| 48 | </project> |