Merge "Add DistributionManagement to checkstyle pom"
[cps.git] / checkstyle / pom.xml
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>
8     <version>0.0.1-SNAPSHOT</version>
9
10     <properties>
11         <nexusproxy>https://nexus.onap.org</nexusproxy>
12         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
13         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
14     </properties>
15
16     <distributionManagement>
17         <repository>
18             <id>ecomp-releases</id>
19             <name>ECOMP Release Repository</name>
20             <url>${nexusproxy}${releaseNexusPath}</url>
21         </repository>
22         <snapshotRepository>
23             <id>ecomp-snapshots</id>
24             <name>ECOMP Snapshot Repository</name>
25             <url>${nexusproxy}${snapshotNexusPath}</url>
26         </snapshotRepository>
27     </distributionManagement>
28 </project>