Claudio David Gasparini | 35b2b44 | 2020-12-01 14:53:40 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <groupId>org.onap.cps</groupId> |
| 7 | <artifactId>checkstyle</artifactId> |
Bruno Sakoto | 06cb929 | 2021-03-04 19:05:02 -0500 | [diff] [blame] | 8 | <version>1.0.0-SNAPSHOT</version> |
Claudio David Gasparini | 42d31ec | 2020-12-07 08:39:56 +0100 | [diff] [blame] | 9 | |
| 10 | <properties> |
| 11 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
| 12 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> |
Claudio David Gasparini | d45b2dc | 2021-01-13 13:28:07 +0100 | [diff] [blame] | 13 | <sonar.skip>true</sonar.skip> |
Claudio David Gasparini | 42d31ec | 2020-12-07 08:39:56 +0100 | [diff] [blame] | 14 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> |
| 15 | </properties> |
| 16 | |
| 17 | <distributionManagement> |
| 18 | <repository> |
| 19 | <id>ecomp-releases</id> |
| 20 | <name>ECOMP Release Repository</name> |
| 21 | <url>${nexusproxy}${releaseNexusPath}</url> |
| 22 | </repository> |
| 23 | <snapshotRepository> |
| 24 | <id>ecomp-snapshots</id> |
| 25 | <name>ECOMP Snapshot Repository</name> |
| 26 | <url>${nexusproxy}${snapshotNexusPath}</url> |
| 27 | </snapshotRepository> |
| 28 | </distributionManagement> |
Claudio David Gasparini | 35b2b44 | 2020-12-01 14:53:40 +0100 | [diff] [blame] | 29 | </project> |