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> |
danielhanrahan | b8e677f | 2024-02-23 15:27:17 +0000 | [diff] [blame] | 28 | <version>3.4.5-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 | |
emaclee | 6cfd73e | 2022-03-24 10:10:37 +0000 | [diff] [blame] | 36 | <build> |
| 37 | <pluginManagement> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.maven.plugins</groupId> |
| 41 | <artifactId>maven-deploy-plugin</artifactId> |
| 42 | <version>2.8.2</version> |
| 43 | </plugin> |
| 44 | </plugins> |
| 45 | </pluginManagement> |
| 46 | </build> |
| 47 | |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 48 | <distributionManagement> |
| 49 | <repository> |
| 50 | <id>ecomp-releases</id> |
| 51 | <name>ECOMP Release Repository</name> |
| 52 | <url>${nexusproxy}${releaseNexusPath}</url> |
| 53 | </repository> |
| 54 | <snapshotRepository> |
| 55 | <id>ecomp-snapshots</id> |
| 56 | <name>ECOMP Snapshot Repository</name> |
| 57 | <url>${nexusproxy}${snapshotNexusPath}</url> |
| 58 | </snapshotRepository> |
| 59 | </distributionManagement> |
| 60 | </project> |