Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 4 | Copyright (C) 2020 Pantheon.tech |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame^] | 5 | Modifications Copyright (C) 2021 - 2022 Nordix Foundation |
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 6 | Modifications Copyright (C) 2021 Bell Canada. |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 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 | |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 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> |
ToineSiebelink | ae74cfd | 2022-03-21 16:17:23 +0000 | [diff] [blame] | 28 | <version>3.1.0-SNAPSHOT</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 29 | <packaging>pom</packaging> |
| 30 | |
| 31 | <description>This artifact contains dependencyManagement declarations of all published CPS components.</description> |
Claudio David Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 32 | |
| 33 | <properties> |
| 34 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
Claudio David Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 35 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> |
Claudio David Gasparini | d45b2dc | 2021-01-13 13:28:07 +0100 | [diff] [blame] | 36 | <sonar.skip>true</sonar.skip> |
Claudio David Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 37 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> |
Claudio David Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 38 | </properties> |
| 39 | |
emaclee | 6cfd73e | 2022-03-24 10:10:37 +0000 | [diff] [blame] | 40 | <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 Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 52 | <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 Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 65 | <dependencyManagement> |
| 66 | <dependencies> |
| 67 | <dependency> |
Claudio D. Gasparini | b77bf25 | 2021-01-28 15:36:37 +0100 | [diff] [blame] | 68 | <groupId>${project.groupId}</groupId> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 69 | <artifactId>cps-service</artifactId> |
| 70 | <version>${project.version}</version> |
| 71 | </dependency> |
| 72 | <dependency> |
Claudio D. Gasparini | b77bf25 | 2021-01-28 15:36:37 +0100 | [diff] [blame] | 73 | <groupId>${project.groupId}</groupId> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 74 | <artifactId>cps-rest</artifactId> |
| 75 | <version>${project.version}</version> |
| 76 | </dependency> |
| 77 | <dependency> |
Claudio D. Gasparini | b77bf25 | 2021-01-28 15:36:37 +0100 | [diff] [blame] | 78 | <groupId>${project.groupId}</groupId> |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 79 | <artifactId>cps-ncmp-service</artifactId> |
Claudio D. Gasparini | 6364703 | 2021-02-15 10:38:21 +0100 | [diff] [blame] | 80 | <version>${project.version}</version> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>${project.groupId}</groupId> |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 84 | <artifactId>cps-ncmp-rest</artifactId> |
Ruslan Kashapov | 9f52f60 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 85 | <version>${project.version}</version> |
| 86 | </dependency> |
| 87 | <dependency> |
Claudio D. Gasparini | b77bf25 | 2021-01-28 15:36:37 +0100 | [diff] [blame] | 88 | <groupId>${project.groupId}</groupId> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 89 | <artifactId>cps-ri</artifactId> |
| 90 | <version>${project.version}</version> |
| 91 | </dependency> |
Claudio David Gasparini | 35b2b44 | 2020-12-01 14:53:40 +0100 | [diff] [blame] | 92 | <dependency> |
Claudio D. Gasparini | b77bf25 | 2021-01-28 15:36:37 +0100 | [diff] [blame] | 93 | <groupId>${project.groupId}</groupId> |
| 94 | <artifactId>cps-application</artifactId> |
| 95 | <version>${project.version}</version> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>${project.groupId}</groupId> |
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 99 | <artifactId>cps-events</artifactId> |
| 100 | <version>${project.version}</version> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>${project.groupId}</groupId> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame^] | 104 | <artifactId>cps-ncmp-events</artifactId> |
| 105 | <version>${project.version}</version> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>${project.groupId}</groupId> |
Claudio David Gasparini | 35b2b44 | 2020-12-01 14:53:40 +0100 | [diff] [blame] | 109 | <artifactId>checkstyle</artifactId> |
| 110 | <version>${project.version}</version> |
| 111 | </dependency> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 112 | <dependency> |
Claudio D. Gasparini | b77bf25 | 2021-01-28 15:36:37 +0100 | [diff] [blame] | 113 | <groupId>${project.groupId}</groupId> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 114 | <artifactId>spotbugs</artifactId> |
| 115 | <version>${project.version}</version> |
| 116 | </dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 117 | </dependencies> |
| 118 | </dependencyManagement> |
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 119 | </project> |