diff options
author | Claudio David Gasparini <claudio.gasparini@pantheon.tech> | 2020-12-07 08:39:56 +0100 |
---|---|---|
committer | Claudio David Gasparini <claudio.gasparini@pantheon.tech> | 2020-12-07 08:39:56 +0100 |
commit | 42d31ec8fa98831905de358fd6c24eac67fe14c2 (patch) | |
tree | 439875c4cf89c4f9f54dcd11767aa6d1f45c4ae8 /checkstyle | |
parent | 13cc64d917b48ca76650b672b2b44f74af3585e0 (diff) |
Add DistributionManagement to checkstyle pom
Issue-ID: CPS-119
Signed-off-by: Claudio David Gasparini <claudio.gasparini@pantheon.tech>
Change-Id: I899cdc00895689a8b010106a8371a69859b7f11b
Diffstat (limited to 'checkstyle')
-rw-r--r-- | checkstyle/pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/checkstyle/pom.xml b/checkstyle/pom.xml index c6b0d2479b..d0cf7c3614 100644 --- a/checkstyle/pom.xml +++ b/checkstyle/pom.xml @@ -6,4 +6,23 @@ <groupId>org.onap.cps</groupId> <artifactId>checkstyle</artifactId> <version>0.0.1-SNAPSHOT</version> + + <properties> + <nexusproxy>https://nexus.onap.org</nexusproxy> + <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> + <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> + </properties> + + <distributionManagement> + <repository> + <id>ecomp-releases</id> + <name>ECOMP Release Repository</name> + <url>${nexusproxy}${releaseNexusPath}</url> + </repository> + <snapshotRepository> + <id>ecomp-snapshots</id> + <name>ECOMP Snapshot Repository</name> + <url>${nexusproxy}${snapshotNexusPath}</url> + </snapshotRepository> + </distributionManagement> </project>
\ No newline at end of file |