Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
ToineSiebelink | c37678a | 2021-05-20 16:44:21 +0100 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Copyright (c) 2021 Linux Foundation. |
| 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | ============LICENSE_END========================================================= |
| 18 | --> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
Rishi.Chail | 48830f1 | 2020-11-09 03:28:44 +0000 | [diff] [blame] | 20 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | 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] | 22 | |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <groupId>org.onap.cps</groupId> |
| 25 | <artifactId>cps-dependencies</artifactId> |
Rishi.Chail | dbffd91 | 2021-03-05 12:32:33 +0000 | [diff] [blame] | 26 | <version>1.1.0-SNAPSHOT</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 27 | <packaging>pom</packaging> |
| 28 | |
| 29 | <name>${project.groupId}:${project.artifactId}</name> |
| 30 | <description>This artifact contains dependencyManagement declarations of upstream versions.</description> |
| 31 | |
JosephKeenan | 9e3fc49 | 2021-07-29 16:10:07 +0100 | [diff] [blame^] | 32 | <repositories> |
| 33 | <repository> |
| 34 | <id>nordix-liquibase-repo</id> |
| 35 | <name>liquibase</name> |
| 36 | <url>https://artifactory.nordix.org/artifactory/liquibase</url> |
| 37 | </repository> |
| 38 | </repositories> |
| 39 | |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 40 | <properties> |
shivasubedi | 8a74ced | 2021-04-29 12:48:05 +0100 | [diff] [blame] | 41 | <groovy.version>3.0.8</groovy.version> |
Claudio David Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 42 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
Claudio David Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 43 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> |
| 44 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> |
Claudio David Gasparini | d45b2dc | 2021-01-13 13:28:07 +0100 | [diff] [blame] | 45 | <sonar.skip>true</sonar.skip> |
Ruslan Kashapov | bf02f20 | 2020-12-17 10:38:53 +0200 | [diff] [blame] | 46 | <testcontainers.version>1.15.1</testcontainers.version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 47 | </properties> |
| 48 | |
Claudio David Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 49 | <distributionManagement> |
| 50 | <repository> |
| 51 | <id>ecomp-releases</id> |
| 52 | <name>ECOMP Release Repository</name> |
| 53 | <url>${nexusproxy}${releaseNexusPath}</url> |
| 54 | </repository> |
| 55 | <snapshotRepository> |
| 56 | <id>ecomp-snapshots</id> |
| 57 | <name>ECOMP Snapshot Repository</name> |
| 58 | <url>${nexusproxy}${snapshotNexusPath}</url> |
| 59 | </snapshotRepository> |
| 60 | </distributionManagement> |
| 61 | |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 62 | <dependencyManagement> |
| 63 | <dependencies> |
| 64 | <dependency> |
| 65 | <groupId>org.springframework.boot</groupId> |
| 66 | <artifactId>spring-boot-dependencies</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 67 | <version>2.5.0</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 68 | <type>pom</type> |
| 69 | <scope>import</scope> |
| 70 | </dependency> |
| 71 | <dependency> |
Claudio D. Gasparini | b77bf25 | 2021-01-28 15:36:37 +0100 | [diff] [blame] | 72 | <groupId>org.springframework.cloud</groupId> |
| 73 | <artifactId>spring-cloud-dependencies</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 74 | <version>2020.0.2</version> |
Claudio D. Gasparini | b77bf25 | 2021-01-28 15:36:37 +0100 | [diff] [blame] | 75 | <type>pom</type> |
| 76 | <scope>import</scope> |
| 77 | </dependency> |
| 78 | <dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 79 | <groupId>org.opendaylight.yangtools</groupId> |
| 80 | <artifactId>yangtools-artifacts</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 81 | <version>5.0.7</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 82 | <type>pom</type> |
| 83 | <scope>import</scope> |
| 84 | </dependency> |
| 85 | <dependency> |
| 86 | <groupId>io.swagger.core.v3</groupId> |
| 87 | <artifactId>swagger-annotations</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 88 | <version>2.1.4</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 89 | </dependency> |
Claudio D. Gasparini | b77bf25 | 2021-01-28 15:36:37 +0100 | [diff] [blame] | 90 | <!---To be removed once swagger-codegen-maven-plugin is upgraded--> |
| 91 | <dependency> |
| 92 | <groupId>io.swagger</groupId> |
| 93 | <artifactId>swagger-annotations</artifactId> |
| 94 | <version>1.6.2</version> |
| 95 | </dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 96 | <dependency> |
puthuparambil.aditya | 4759811 | 2020-11-02 11:31:39 +0000 | [diff] [blame] | 97 | <groupId>io.springfox</groupId> |
puthuparambil.aditya | 52cff68 | 2020-11-05 11:34:41 +0000 | [diff] [blame] | 98 | <artifactId>springfox-boot-starter</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 99 | <version>3.0.0</version> |
puthuparambil.aditya | 4759811 | 2020-11-02 11:31:39 +0000 | [diff] [blame] | 100 | </dependency> |
| 101 | <dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 102 | <groupId>com.vladmihalcea</groupId> |
| 103 | <artifactId>hibernate-types-52</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 104 | <version>2.10.0</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 105 | </dependency> |
| 106 | <dependency> |
ToineSiebelink | c37678a | 2021-05-20 16:44:21 +0100 | [diff] [blame] | 107 | <groupId>org.antlr</groupId> |
| 108 | <artifactId>antlr4-runtime</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 109 | <version>4.9.2</version> |
ToineSiebelink | c37678a | 2021-05-20 16:44:21 +0100 | [diff] [blame] | 110 | </dependency> |
| 111 | <dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 112 | <groupId>org.codehaus.groovy</groupId> |
| 113 | <artifactId>groovy</artifactId> |
| 114 | <version>${groovy.version}</version> |
| 115 | </dependency> |
| 116 | <dependency> |
shivasubedi | 8a74ced | 2021-04-29 12:48:05 +0100 | [diff] [blame] | 117 | <groupId>org.codehaus.groovy</groupId> |
| 118 | <artifactId>groovy-json</artifactId> |
| 119 | <version>${groovy.version}</version> |
| 120 | </dependency> |
| 121 | <dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 122 | <groupId>org.spockframework</groupId> |
| 123 | <artifactId>spock-core</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 124 | <version>2.0-M5-groovy-3.0</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 125 | </dependency> |
| 126 | <dependency> |
puthuparambil.aditya | 008c0ad | 2020-12-14 15:46:30 +0000 | [diff] [blame] | 127 | <groupId>org.spockframework</groupId> |
| 128 | <artifactId>spock-spring</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 129 | <version>2.0-M5-groovy-3.0</version> |
puthuparambil.aditya | 008c0ad | 2020-12-14 15:46:30 +0000 | [diff] [blame] | 130 | </dependency> |
| 131 | <dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 132 | <groupId>cglib</groupId> |
| 133 | <artifactId>cglib-nodep</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 134 | <version>3.1</version> |
Claudio David Gasparini | 1bd1c6c | 2020-11-08 22:31:43 +0100 | [diff] [blame] | 135 | </dependency> |
| 136 | <dependency> |
| 137 | <groupId>org.apache.commons</groupId> |
| 138 | <artifactId>commons-lang3</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 139 | <version>3.11</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 140 | </dependency> |
Rishi.Chail | 48830f1 | 2020-11-09 03:28:44 +0000 | [diff] [blame] | 141 | <dependency> |
| 142 | <groupId>org.modelmapper</groupId> |
| 143 | <artifactId>modelmapper</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 144 | <version>2.3.8</version> |
Rishi.Chail | 48830f1 | 2020-11-09 03:28:44 +0000 | [diff] [blame] | 145 | </dependency> |
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 146 | <dependency> |
| 147 | <groupId>org.testcontainers</groupId> |
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 148 | <artifactId>kafka</artifactId> |
| 149 | <version>${testcontainers.version}</version> |
| 150 | </dependency> |
| 151 | <dependency> |
| 152 | <groupId>org.testcontainers</groupId> |
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 153 | <artifactId>postgresql</artifactId> |
| 154 | <version>${testcontainers.version}</version> |
| 155 | </dependency> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 156 | <dependency> |
ToineSiebelink | 2806662 | 2021-01-27 10:47:04 +0000 | [diff] [blame] | 157 | <groupId>org.testcontainers</groupId> |
| 158 | <artifactId>spock</artifactId> |
| 159 | <version>${testcontainers.version}</version> |
| 160 | </dependency> |
| 161 | <dependency> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 162 | <groupId>com.github.spotbugs</groupId> |
| 163 | <artifactId>spotbugs</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 164 | <version>4.2.0</version> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 165 | </dependency> |
puthuparambil.aditya | 495ae8e | 2021-02-23 15:51:00 +0000 | [diff] [blame] | 166 | <dependency> |
| 167 | <groupId>org.liquibase</groupId> |
| 168 | <artifactId>liquibase-core</artifactId> |
JosephKeenan | 9e3fc49 | 2021-07-29 16:10:07 +0100 | [diff] [blame^] | 169 | <version>4.4.2-nordix</version> |
puthuparambil.aditya | 495ae8e | 2021-02-23 15:51:00 +0000 | [diff] [blame] | 170 | </dependency> |
DylanB95EST | db1f378 | 2021-06-22 16:57:16 +0100 | [diff] [blame] | 171 | <dependency> |
| 172 | <groupId>com.tngtech.archunit</groupId> |
| 173 | <artifactId>archunit-junit5</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 174 | <version>0.18.0</version> |
DylanB95EST | db1f378 | 2021-06-22 16:57:16 +0100 | [diff] [blame] | 175 | <scope>test</scope> |
| 176 | </dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 177 | </dependencies> |
| 178 | </dependencyManagement> |
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 179 | </project> |