Update versions for next release
[cps.git] / cps-bom / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   Copyright (C) 2020 Pantheon.tech
5   Modifications Copyright (C) 2021 Nordix Foundation
6   Modifications Copyright (C) 2021 Bell Canada.
7   ================================================================================
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
22 <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>
28     <version>3.1.0-SNAPSHOT</version>
29     <packaging>pom</packaging>
30
31     <description>This artifact contains dependencyManagement declarations of all published CPS components.</description>
32
33     <properties>
34         <nexusproxy>https://nexus.onap.org</nexusproxy>
35         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
36         <sonar.skip>true</sonar.skip>
37         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
38     </properties>
39
40     <distributionManagement>
41         <repository>
42             <id>ecomp-releases</id>
43             <name>ECOMP Release Repository</name>
44             <url>${nexusproxy}${releaseNexusPath}</url>
45         </repository>
46         <snapshotRepository>
47             <id>ecomp-snapshots</id>
48             <name>ECOMP Snapshot Repository</name>
49             <url>${nexusproxy}${snapshotNexusPath}</url>
50         </snapshotRepository>
51     </distributionManagement>
52
53     <dependencyManagement>
54         <dependencies>
55             <dependency>
56                 <groupId>${project.groupId}</groupId>
57                 <artifactId>cps-service</artifactId>
58                 <version>${project.version}</version>
59             </dependency>
60             <dependency>
61                 <groupId>${project.groupId}</groupId>
62                 <artifactId>cps-rest</artifactId>
63                 <version>${project.version}</version>
64             </dependency>
65             <dependency>
66                 <groupId>${project.groupId}</groupId>
67                 <artifactId>cps-ncmp-service</artifactId>
68                 <version>${project.version}</version>
69             </dependency>
70             <dependency>
71                 <groupId>${project.groupId}</groupId>
72                 <artifactId>cps-ncmp-rest</artifactId>
73                 <version>${project.version}</version>
74             </dependency>
75             <dependency>
76                 <groupId>${project.groupId}</groupId>
77                 <artifactId>cps-ri</artifactId>
78                 <version>${project.version}</version>
79             </dependency>
80             <dependency>
81                 <groupId>${project.groupId}</groupId>
82                 <artifactId>cps-application</artifactId>
83                 <version>${project.version}</version>
84             </dependency>
85             <dependency>
86                 <groupId>${project.groupId}</groupId>
87                 <artifactId>cps-events</artifactId>
88                 <version>${project.version}</version>
89             </dependency>
90             <dependency>
91                 <groupId>${project.groupId}</groupId>
92                 <artifactId>checkstyle</artifactId>
93                 <version>${project.version}</version>
94             </dependency>
95             <dependency>
96                 <groupId>${project.groupId}</groupId>
97                 <artifactId>spotbugs</artifactId>
98                 <version>${project.version}</version>
99             </dependency>
100         </dependencies>
101     </dependencyManagement>
102 </project>