blob: f2fcb6ee0e3bff44ee98467866f2b32e8491b9aa [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=======================================================
lukegleeson15b93e72021-07-07 15:25:30 +01004 Copyright (C) 2020 Pantheon.tech
JosephKeenanf31c7f82022-05-24 18:59:25 +01005 Modifications Copyright (C) 2021 - 2022 Nordix Foundation
lukegleeson15b93e72021-07-07 15:25:30 +01006 Modifications Copyright (C) 2021 Bell Canada.
tragait34a94b92021-03-30 12:02:27 +01007 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20-->
21
Claudio David Gasparini70c17022020-10-26 10:12:10 +010022<project xmlns="http://maven.apache.org/POM/4.0.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <modelVersion>4.0.0</modelVersion>
26 <groupId>org.onap.cps</groupId>
27 <artifactId>cps-bom</artifactId>
ToineSiebelinkae74cfd2022-03-21 16:17:23 +000028 <version>3.1.0-SNAPSHOT</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010029 <packaging>pom</packaging>
30
31 <description>This artifact contains dependencyManagement declarations of all published CPS components.</description>
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010032
33 <properties>
34 <nexusproxy>https://nexus.onap.org</nexusproxy>
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010035 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
Claudio David Gasparinid45b2dc2021-01-13 13:28:07 +010036 <sonar.skip>true</sonar.skip>
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010037 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010038 </properties>
39
emaclee6cfd73e2022-03-24 10:10:37 +000040 <build>
41 <pluginManagement>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-deploy-plugin</artifactId>
46 <version>2.8.2</version>
47 </plugin>
48 </plugins>
49 </pluginManagement>
50 </build>
51
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010052 <distributionManagement>
53 <repository>
54 <id>ecomp-releases</id>
55 <name>ECOMP Release Repository</name>
56 <url>${nexusproxy}${releaseNexusPath}</url>
57 </repository>
58 <snapshotRepository>
59 <id>ecomp-snapshots</id>
60 <name>ECOMP Snapshot Repository</name>
61 <url>${nexusproxy}${snapshotNexusPath}</url>
62 </snapshotRepository>
63 </distributionManagement>
64
Claudio David Gasparini70c17022020-10-26 10:12:10 +010065 <dependencyManagement>
66 <dependencies>
67 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010068 <groupId>${project.groupId}</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010069 <artifactId>cps-service</artifactId>
70 <version>${project.version}</version>
71 </dependency>
72 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010073 <groupId>${project.groupId}</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010074 <artifactId>cps-rest</artifactId>
75 <version>${project.version}</version>
76 </dependency>
77 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010078 <groupId>${project.groupId}</groupId>
tragait34a94b92021-03-30 12:02:27 +010079 <artifactId>cps-ncmp-service</artifactId>
Claudio D. Gasparini63647032021-02-15 10:38:21 +010080 <version>${project.version}</version>
81 </dependency>
82 <dependency>
83 <groupId>${project.groupId}</groupId>
tragait34a94b92021-03-30 12:02:27 +010084 <artifactId>cps-ncmp-rest</artifactId>
Ruslan Kashapov9f52f602021-01-22 12:53:01 +020085 <version>${project.version}</version>
86 </dependency>
87 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010088 <groupId>${project.groupId}</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010089 <artifactId>cps-ri</artifactId>
90 <version>${project.version}</version>
91 </dependency>
Claudio David Gasparini35b2b442020-12-01 14:53:40 +010092 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010093 <groupId>${project.groupId}</groupId>
94 <artifactId>cps-application</artifactId>
95 <version>${project.version}</version>
96 </dependency>
97 <dependency>
98 <groupId>${project.groupId}</groupId>
Renu Kumariff52b942021-05-27 23:16:32 -040099 <artifactId>cps-events</artifactId>
100 <version>${project.version}</version>
101 </dependency>
102 <dependency>
103 <groupId>${project.groupId}</groupId>
JosephKeenanf31c7f82022-05-24 18:59:25 +0100104 <artifactId>cps-ncmp-events</artifactId>
105 <version>${project.version}</version>
106 </dependency>
107 <dependency>
108 <groupId>${project.groupId}</groupId>
Claudio David Gasparini35b2b442020-12-01 14:53:40 +0100109 <artifactId>checkstyle</artifactId>
110 <version>${project.version}</version>
111 </dependency>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +0100112 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100113 <groupId>${project.groupId}</groupId>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +0100114 <artifactId>spotbugs</artifactId>
115 <version>${project.version}</version>
116 </dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100117 </dependencies>
118 </dependencyManagement>
lukegleeson15b93e72021-07-07 15:25:30 +0100119</project>