Introduce CPS-checkstyle
[cps.git] / cps-bom / 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>cps-bom</artifactId>
8     <version>0.0.1-SNAPSHOT</version>
9     <packaging>pom</packaging>
10
11     <description>This artifact contains dependencyManagement declarations of all published CPS components.</description>
12
13     <properties>
14         <nexusproxy>https://nexus.onap.org</nexusproxy>
15         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
16         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
17         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
18         <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
19     </properties>
20
21     <distributionManagement>
22         <repository>
23             <id>ecomp-releases</id>
24             <name>ECOMP Release Repository</name>
25             <url>${nexusproxy}${releaseNexusPath}</url>
26         </repository>
27         <snapshotRepository>
28             <id>ecomp-snapshots</id>
29             <name>ECOMP Snapshot Repository</name>
30             <url>${nexusproxy}${snapshotNexusPath}</url>
31         </snapshotRepository>
32     </distributionManagement>
33
34     <dependencyManagement>
35         <dependencies>
36             <dependency>
37                 <groupId>org.onap.cps</groupId>
38                 <artifactId>cps-service</artifactId>
39                 <version>${project.version}</version>
40             </dependency>
41             <dependency>
42                 <groupId>org.onap.cps</groupId>
43                 <artifactId>cps-rest</artifactId>
44                 <version>${project.version}</version>
45             </dependency>
46             <dependency>
47                 <groupId>org.onap.cps</groupId>
48                 <artifactId>cps-ri</artifactId>
49                 <version>${project.version}</version>
50             </dependency>
51             <dependency>
52                 <groupId>org.onap.cps</groupId>
53                 <artifactId>checkstyle</artifactId>
54                 <version>${project.version}</version>
55             </dependency>
56         </dependencies>
57     </dependencyManagement>
58 </project>