Merge "Sending Data Updated Event to kafka"
[cps.git] / cps-bom / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   Modification Copyright (C) 2021 Nordix Foundation
5   Modification Copyright (C) 2021 Bell Canada.
6   ================================================================================
7   Licensed under the Apache License, Version 2.0 (the "License");
8   you may not use this file except in compliance with the License.
9   You may obtain a copy of the License at
10
11         http://www.apache.org/licenses/LICENSE-2.0
12
13   Unless required by applicable law or agreed to in writing, software
14   distributed under the License is distributed on an "AS IS" BASIS,
15   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   See the License for the specific language governing permissions and
17   limitations under the License.
18   ============LICENSE_END=========================================================
19 -->
20
21 <project xmlns="http://maven.apache.org/POM/4.0.0"
22          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24     <modelVersion>4.0.0</modelVersion>
25     <groupId>org.onap.cps</groupId>
26     <artifactId>cps-bom</artifactId>
27     <version>1.1.0-SNAPSHOT</version>
28     <packaging>pom</packaging>
29
30     <description>This artifact contains dependencyManagement declarations of all published CPS components.</description>
31
32     <properties>
33         <nexusproxy>https://nexus.onap.org</nexusproxy>
34         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
35         <sonar.skip>true</sonar.skip>
36         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
37     </properties>
38
39     <distributionManagement>
40         <repository>
41             <id>ecomp-releases</id>
42             <name>ECOMP Release Repository</name>
43             <url>${nexusproxy}${releaseNexusPath}</url>
44         </repository>
45         <snapshotRepository>
46             <id>ecomp-snapshots</id>
47             <name>ECOMP Snapshot Repository</name>
48             <url>${nexusproxy}${snapshotNexusPath}</url>
49         </snapshotRepository>
50     </distributionManagement>
51
52     <dependencyManagement>
53         <dependencies>
54             <dependency>
55                 <groupId>${project.groupId}</groupId>
56                 <artifactId>cps-service</artifactId>
57                 <version>${project.version}</version>
58             </dependency>
59             <dependency>
60                 <groupId>${project.groupId}</groupId>
61                 <artifactId>cps-rest</artifactId>
62                 <version>${project.version}</version>
63             </dependency>
64             <dependency>
65                 <groupId>${project.groupId}</groupId>
66                 <artifactId>cps-ncmp-service</artifactId>
67                 <version>${project.version}</version>
68             </dependency>
69             <dependency>
70                 <groupId>${project.groupId}</groupId>
71                 <artifactId>cps-ncmp-rest</artifactId>
72                 <version>${project.version}</version>
73             </dependency>
74             <dependency>
75                 <groupId>${project.groupId}</groupId>
76                 <artifactId>cps-ri</artifactId>
77                 <version>${project.version}</version>
78             </dependency>
79             <dependency>
80                 <groupId>${project.groupId}</groupId>
81                 <artifactId>cps-application</artifactId>
82                 <version>${project.version}</version>
83             </dependency>
84             <dependency>
85                 <groupId>${project.groupId}</groupId>
86                 <artifactId>cps-events</artifactId>
87                 <version>${project.version}</version>
88             </dependency>
89             <dependency>
90                 <groupId>${project.groupId}</groupId>
91                 <artifactId>checkstyle</artifactId>
92                 <version>${project.version}</version>
93             </dependency>
94             <dependency>
95                 <groupId>${project.groupId}</groupId>
96                 <artifactId>spotbugs</artifactId>
97                 <version>${project.version}</version>
98             </dependency>
99         </dependencies>
100     </dependencyManagement>
101 </project>