Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <groupId>org.onap.cps</groupId> |
| 7 | <artifactId>cps-bom</artifactId> |
| 8 | <version>0.0.1-SNAPSHOT</version> |
| 9 | <packaging>pom</packaging> |
| 10 | |
| 11 | <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] | 12 | |
| 13 | <properties> |
| 14 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
Claudio David Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 15 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> |
| 16 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> |
Claudio David Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 17 | </properties> |
| 18 | |
| 19 | <distributionManagement> |
| 20 | <repository> |
| 21 | <id>ecomp-releases</id> |
| 22 | <name>ECOMP Release Repository</name> |
| 23 | <url>${nexusproxy}${releaseNexusPath}</url> |
| 24 | </repository> |
| 25 | <snapshotRepository> |
| 26 | <id>ecomp-snapshots</id> |
| 27 | <name>ECOMP Snapshot Repository</name> |
| 28 | <url>${nexusproxy}${snapshotNexusPath}</url> |
| 29 | </snapshotRepository> |
| 30 | </distributionManagement> |
| 31 | |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 32 | <dependencyManagement> |
| 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>org.onap.cps</groupId> |
| 36 | <artifactId>cps-service</artifactId> |
| 37 | <version>${project.version}</version> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.onap.cps</groupId> |
| 41 | <artifactId>cps-rest</artifactId> |
| 42 | <version>${project.version}</version> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.onap.cps</groupId> |
| 46 | <artifactId>cps-ri</artifactId> |
| 47 | <version>${project.version}</version> |
| 48 | </dependency> |
Claudio David Gasparini | 35b2b44 | 2020-12-01 14:53:40 +0100 | [diff] [blame] | 49 | <dependency> |
| 50 | <groupId>org.onap.cps</groupId> |
| 51 | <artifactId>checkstyle</artifactId> |
| 52 | <version>${project.version}</version> |
| 53 | </dependency> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame^] | 54 | <dependency> |
| 55 | <groupId>org.onap.cps</groupId> |
| 56 | <artifactId>spotbugs</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | </dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 59 | </dependencies> |
| 60 | </dependencyManagement> |
| 61 | </project> |