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" |
Rishi.Chail | 48830f1 | 2020-11-09 03:28:44 +0000 | [diff] [blame] | 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"> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 5 | |
| 6 | <modelVersion>4.0.0</modelVersion> |
| 7 | <groupId>org.onap.cps</groupId> |
| 8 | <artifactId>cps-dependencies</artifactId> |
| 9 | <version>0.0.1-SNAPSHOT</version> |
| 10 | <packaging>pom</packaging> |
| 11 | |
| 12 | <name>${project.groupId}:${project.artifactId}</name> |
| 13 | <description>This artifact contains dependencyManagement declarations of upstream versions.</description> |
| 14 | |
| 15 | <properties> |
Claudio David Gasparini | 1bd1c6c | 2020-11-08 22:31:43 +0100 | [diff] [blame] | 16 | <cglib-nodep.version>3.1</cglib-nodep.version> |
| 17 | <commons-lang3.version>3.11</commons-lang3.version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 18 | <groovy.version>3.0.6</groovy.version> |
| 19 | <hibernate-types.version>2.10.0</hibernate-types.version> |
Claudio David Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 20 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
Claudio David Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 21 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> |
| 22 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> |
Rishi.Chail | 48830f1 | 2020-11-09 03:28:44 +0000 | [diff] [blame] | 23 | <modelmapper.version>2.3.8</modelmapper.version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 24 | <spock-core.version>2.0-M2-groovy-3.0</spock-core.version> |
puthuparambil.aditya | 008c0ad | 2020-12-14 15:46:30 +0000 | [diff] [blame] | 25 | <spock-spring.version>1.3-groovy-2.5</spock-spring.version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 26 | <springboot.version>2.3.3.RELEASE</springboot.version> |
puthuparambil.aditya | 52cff68 | 2020-11-05 11:34:41 +0000 | [diff] [blame] | 27 | <springfox.version>3.0.0</springfox.version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 28 | <swagger.version>2.1.4</swagger.version> |
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 29 | <testcontainers.version>1.15.0</testcontainers.version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 30 | <yangtools.version>5.0.6</yangtools.version> |
| 31 | </properties> |
| 32 | |
Claudio David Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 33 | <distributionManagement> |
| 34 | <repository> |
| 35 | <id>ecomp-releases</id> |
| 36 | <name>ECOMP Release Repository</name> |
| 37 | <url>${nexusproxy}${releaseNexusPath}</url> |
| 38 | </repository> |
| 39 | <snapshotRepository> |
| 40 | <id>ecomp-snapshots</id> |
| 41 | <name>ECOMP Snapshot Repository</name> |
| 42 | <url>${nexusproxy}${snapshotNexusPath}</url> |
| 43 | </snapshotRepository> |
| 44 | </distributionManagement> |
| 45 | |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 46 | <dependencyManagement> |
| 47 | <dependencies> |
| 48 | <dependency> |
| 49 | <groupId>org.springframework.boot</groupId> |
| 50 | <artifactId>spring-boot-dependencies</artifactId> |
| 51 | <version>${springboot.version}</version> |
| 52 | <type>pom</type> |
| 53 | <scope>import</scope> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.opendaylight.yangtools</groupId> |
| 57 | <artifactId>yangtools-artifacts</artifactId> |
| 58 | <version>${yangtools.version}</version> |
| 59 | <type>pom</type> |
| 60 | <scope>import</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>io.swagger.core.v3</groupId> |
| 64 | <artifactId>swagger-annotations</artifactId> |
| 65 | <version>${swagger.version}</version> |
| 66 | </dependency> |
| 67 | <dependency> |
puthuparambil.aditya | 4759811 | 2020-11-02 11:31:39 +0000 | [diff] [blame] | 68 | <groupId>io.springfox</groupId> |
puthuparambil.aditya | 52cff68 | 2020-11-05 11:34:41 +0000 | [diff] [blame] | 69 | <artifactId>springfox-boot-starter</artifactId> |
| 70 | <version>${springfox.version}</version> |
puthuparambil.aditya | 4759811 | 2020-11-02 11:31:39 +0000 | [diff] [blame] | 71 | </dependency> |
| 72 | <dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 73 | <groupId>com.vladmihalcea</groupId> |
| 74 | <artifactId>hibernate-types-52</artifactId> |
| 75 | <version>${hibernate-types.version}</version> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.codehaus.groovy</groupId> |
| 79 | <artifactId>groovy</artifactId> |
| 80 | <version>${groovy.version}</version> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.spockframework</groupId> |
| 84 | <artifactId>spock-core</artifactId> |
| 85 | <version>${spock-core.version}</version> |
| 86 | </dependency> |
| 87 | <dependency> |
puthuparambil.aditya | 008c0ad | 2020-12-14 15:46:30 +0000 | [diff] [blame] | 88 | <groupId>org.spockframework</groupId> |
| 89 | <artifactId>spock-spring</artifactId> |
| 90 | <version>${spock-spring.version}</version> |
| 91 | </dependency> |
| 92 | <dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 93 | <groupId>cglib</groupId> |
| 94 | <artifactId>cglib-nodep</artifactId> |
Claudio David Gasparini | 1bd1c6c | 2020-11-08 22:31:43 +0100 | [diff] [blame] | 95 | <version>${cglib-nodep.version}</version> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>org.apache.commons</groupId> |
| 99 | <artifactId>commons-lang3</artifactId> |
| 100 | <version>${commons-lang3.version}</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 101 | </dependency> |
Rishi.Chail | 48830f1 | 2020-11-09 03:28:44 +0000 | [diff] [blame] | 102 | <dependency> |
| 103 | <groupId>org.modelmapper</groupId> |
| 104 | <artifactId>modelmapper</artifactId> |
| 105 | <version>${modelmapper.version}</version> |
| 106 | </dependency> |
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 107 | <dependency> |
| 108 | <groupId>org.testcontainers</groupId> |
| 109 | <artifactId>postgresql</artifactId> |
| 110 | <version>${testcontainers.version}</version> |
| 111 | </dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 112 | </dependencies> |
| 113 | </dependencyManagement> |
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 114 | </project> |