520a4841533d0740626ca0fabefd8087c33e7374
[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         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
16         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
17     </properties>
18
19     <distributionManagement>
20         <repository>
21             <id>ecomp-releases</id>
22             <name>ECOMP Release Repository</name>
23             <url>${nexusproxy}${releaseNexusPath}</url>
24         </repository>
25         <snapshotRepository>
26             <id>ecomp-snapshots</id>
27             <name>ECOMP Snapshot Repository</name>
28             <url>${nexusproxy}${snapshotNexusPath}</url>
29         </snapshotRepository>
30     </distributionManagement>
31
32     <dependencyManagement>
33         <dependencies>
34             <dependency>
35                 <groupId>org.onap.cps</groupId>
36                 <artifactId>cps-service</artifactId>
37                 <version>${project.version}</version>
38             </dependency>
39             <dependency>
40                 <groupId>org.onap.cps</groupId>
41                 <artifactId>cps-rest</artifactId>
42                 <version>${project.version}</version>
43             </dependency>
44             <dependency>
45                 <groupId>org.onap.cps</groupId>
46                 <artifactId>cps-ri</artifactId>
47                 <version>${project.version}</version>
48             </dependency>
49             <dependency>
50                 <groupId>org.onap.cps</groupId>
51                 <artifactId>checkstyle</artifactId>
52                 <version>${project.version}</version>
53             </dependency>
54         </dependencies>
55     </dependencyManagement>
56 </project>