blob: 5b0271a9e9f80f5f06701e46dc7abc66a31821d7 [file] [log] [blame]
Claudio David Gasparini70c17022020-10-26 10:12:10 +01001<?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>
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010012
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
Claudio David Gasparini70c17022020-10-26 10:12:10 +010034 <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 </dependencies>
52 </dependencyManagement>
53</project>