blob: 12961b8fd29c2ab432139837d2e782c4f2973bf0 [file] [log] [blame]
Claudio David Gasparini70c17022020-10-26 10:12:10 +01001<?xml version="1.0" encoding="UTF-8"?>
tragait34a94b92021-03-30 12:02:27 +01002<!--
3 ============LICENSE_START=======================================================
4 Modification Copyright (C) 2021 Nordix Foundation
5 ================================================================================
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17 ============LICENSE_END=========================================================
18-->
19
Claudio David Gasparini70c17022020-10-26 10:12:10 +010020<project xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24 <groupId>org.onap.cps</groupId>
25 <artifactId>cps-bom</artifactId>
Rishi.Chaildbffd912021-03-05 12:32:33 +000026 <version>1.1.0-SNAPSHOT</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010027 <packaging>pom</packaging>
28
29 <description>This artifact contains dependencyManagement declarations of all published CPS components.</description>
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010030
31 <properties>
32 <nexusproxy>https://nexus.onap.org</nexusproxy>
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010033 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
Claudio David Gasparinid45b2dc2021-01-13 13:28:07 +010034 <sonar.skip>true</sonar.skip>
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010035 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010036 </properties>
37
38 <distributionManagement>
39 <repository>
40 <id>ecomp-releases</id>
41 <name>ECOMP Release Repository</name>
42 <url>${nexusproxy}${releaseNexusPath}</url>
43 </repository>
44 <snapshotRepository>
45 <id>ecomp-snapshots</id>
46 <name>ECOMP Snapshot Repository</name>
47 <url>${nexusproxy}${snapshotNexusPath}</url>
48 </snapshotRepository>
49 </distributionManagement>
50
Claudio David Gasparini70c17022020-10-26 10:12:10 +010051 <dependencyManagement>
52 <dependencies>
53 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010054 <groupId>${project.groupId}</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010055 <artifactId>cps-service</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010059 <groupId>${project.groupId}</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010060 <artifactId>cps-rest</artifactId>
61 <version>${project.version}</version>
62 </dependency>
63 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010064 <groupId>${project.groupId}</groupId>
tragait34a94b92021-03-30 12:02:27 +010065 <artifactId>cps-ncmp-service</artifactId>
Claudio D. Gasparini63647032021-02-15 10:38:21 +010066 <version>${project.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>${project.groupId}</groupId>
tragait34a94b92021-03-30 12:02:27 +010070 <artifactId>cps-ncmp-rest</artifactId>
Ruslan Kashapov9f52f602021-01-22 12:53:01 +020071 <version>${project.version}</version>
72 </dependency>
73 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010074 <groupId>${project.groupId}</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010075 <artifactId>cps-ri</artifactId>
76 <version>${project.version}</version>
77 </dependency>
Claudio David Gasparini35b2b442020-12-01 14:53:40 +010078 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010079 <groupId>${project.groupId}</groupId>
80 <artifactId>cps-application</artifactId>
81 <version>${project.version}</version>
82 </dependency>
83 <dependency>
84 <groupId>${project.groupId}</groupId>
Claudio David Gasparini35b2b442020-12-01 14:53:40 +010085 <artifactId>checkstyle</artifactId>
86 <version>${project.version}</version>
87 </dependency>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +010088 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010089 <groupId>${project.groupId}</groupId>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +010090 <artifactId>spotbugs</artifactId>
91 <version>${project.version}</version>
92 </dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010093 </dependencies>
94 </dependencyManagement>
95</project>