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. |
lukegleeson | d5bda88 | 2022-03-02 14:32:47 +0000 | [diff] [blame] | 5 | Modifications Copyright (C) 2020-2022 Nordix Foundation |
Bruno Sakoto | f440573 | 2022-04-21 18:08:18 -0400 | [diff] [blame] | 6 | Modifications Copyright (C) 2022 Bell Canada. |
ToineSiebelink | c37678a | 2021-05-20 16:44:21 +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. |
Bruno Sakoto | f440573 | 2022-04-21 18:08:18 -0400 | [diff] [blame] | 19 | |
| 20 | SPDX-License-Identifier: Apache-2.0 |
ToineSiebelink | c37678a | 2021-05-20 16:44:21 +0100 | [diff] [blame] | 21 | ============LICENSE_END========================================================= |
| 22 | --> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 23 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
emaclee | 6e3f421 | 2022-03-22 10:09:42 +0000 | [diff] [blame] | 24 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 25 | 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] | 26 | |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <groupId>org.onap.cps</groupId> |
| 29 | <artifactId>cps-dependencies</artifactId> |
seanbeirne | f0f4fd8 | 2023-03-07 13:42:04 +0000 | [diff] [blame^] | 30 | <version>3.2.4-SNAPSHOT</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 31 | <packaging>pom</packaging> |
| 32 | |
| 33 | <name>${project.groupId}:${project.artifactId}</name> |
| 34 | <description>This artifact contains dependencyManagement declarations of upstream versions.</description> |
| 35 | |
| 36 | <properties> |
shivasubedi | 8a74ced | 2021-04-29 12:48:05 +0100 | [diff] [blame] | 37 | <groovy.version>3.0.8</groovy.version> |
Claudio David Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 38 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
Claudio David Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 39 | <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> |
| 40 | <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> |
Claudio David Gasparini | d45b2dc | 2021-01-13 13:28:07 +0100 | [diff] [blame] | 41 | <sonar.skip>true</sonar.skip> |
mpriyank | d2a1f36 | 2022-11-14 15:04:33 +0000 | [diff] [blame] | 42 | <testcontainers.version>1.17.3</testcontainers.version> |
DylanB95EST | d042fcd | 2022-02-21 12:57:08 +0000 | [diff] [blame] | 43 | <mapstruct.version>1.4.2.Final</mapstruct.version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 44 | </properties> |
| 45 | |
emaclee | 6cfd73e | 2022-03-24 10:10:37 +0000 | [diff] [blame] | 46 | <build> |
| 47 | <pluginManagement> |
| 48 | <plugins> |
| 49 | <plugin> |
| 50 | <groupId>org.apache.maven.plugins</groupId> |
| 51 | <artifactId>maven-deploy-plugin</artifactId> |
| 52 | <version>2.8.2</version> |
| 53 | </plugin> |
| 54 | </plugins> |
| 55 | </pluginManagement> |
| 56 | </build> |
| 57 | |
Claudio David Gasparini | 24c217c | 2020-11-17 13:46:10 +0100 | [diff] [blame] | 58 | <distributionManagement> |
| 59 | <repository> |
| 60 | <id>ecomp-releases</id> |
| 61 | <name>ECOMP Release Repository</name> |
| 62 | <url>${nexusproxy}${releaseNexusPath}</url> |
| 63 | </repository> |
| 64 | <snapshotRepository> |
| 65 | <id>ecomp-snapshots</id> |
| 66 | <name>ECOMP Snapshot Repository</name> |
| 67 | <url>${nexusproxy}${snapshotNexusPath}</url> |
| 68 | </snapshotRepository> |
| 69 | </distributionManagement> |
| 70 | |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 71 | <dependencyManagement> |
| 72 | <dependencies> |
| 73 | <dependency> |
| 74 | <groupId>org.springframework.boot</groupId> |
| 75 | <artifactId>spring-boot-dependencies</artifactId> |
leventecsanyi | 2022092 | 2022-12-01 17:20:11 +0100 | [diff] [blame] | 76 | <version>2.6.14</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 77 | <type>pom</type> |
| 78 | <scope>import</scope> |
| 79 | </dependency> |
| 80 | <dependency> |
Claudio D. Gasparini | b77bf25 | 2021-01-28 15:36:37 +0100 | [diff] [blame] | 81 | <groupId>org.springframework.cloud</groupId> |
| 82 | <artifactId>spring-cloud-dependencies</artifactId> |
ToineSiebelink | b0a5601 | 2022-07-14 13:38:26 +0100 | [diff] [blame] | 83 | <version>2021.0.3</version> |
Claudio D. Gasparini | b77bf25 | 2021-01-28 15:36:37 +0100 | [diff] [blame] | 84 | <type>pom</type> |
| 85 | <scope>import</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 88 | <groupId>org.opendaylight.yangtools</groupId> |
| 89 | <artifactId>yangtools-artifacts</artifactId> |
emaclee | 25969bf | 2022-11-22 16:04:14 +0000 | [diff] [blame] | 90 | <version>8.0.6</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 91 | <type>pom</type> |
| 92 | <scope>import</scope> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>io.swagger.core.v3</groupId> |
| 96 | <artifactId>swagger-annotations</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 97 | <version>2.1.4</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 98 | </dependency> |
| 99 | <dependency> |
puthuparambil.aditya | 4759811 | 2020-11-02 11:31:39 +0000 | [diff] [blame] | 100 | <groupId>io.springfox</groupId> |
puthuparambil.aditya | 52cff68 | 2020-11-05 11:34:41 +0000 | [diff] [blame] | 101 | <artifactId>springfox-boot-starter</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 102 | <version>3.0.0</version> |
puthuparambil.aditya | 4759811 | 2020-11-02 11:31:39 +0000 | [diff] [blame] | 103 | </dependency> |
| 104 | <dependency> |
ToineSiebelink | ad72efe | 2022-03-02 13:32:56 +0000 | [diff] [blame] | 105 | <groupId>com.google.code.gson</groupId> |
| 106 | <artifactId>gson</artifactId> |
| 107 | <version>2.8.9</version> |
| 108 | </dependency> |
| 109 | <dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 110 | <groupId>com.vladmihalcea</groupId> |
| 111 | <artifactId>hibernate-types-52</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 112 | <version>2.10.0</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 113 | </dependency> |
| 114 | <dependency> |
ToineSiebelink | c37678a | 2021-05-20 16:44:21 +0100 | [diff] [blame] | 115 | <groupId>org.antlr</groupId> |
| 116 | <artifactId>antlr4-runtime</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 117 | <version>4.9.2</version> |
ToineSiebelink | c37678a | 2021-05-20 16:44:21 +0100 | [diff] [blame] | 118 | </dependency> |
| 119 | <dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 120 | <groupId>org.codehaus.groovy</groupId> |
| 121 | <artifactId>groovy</artifactId> |
| 122 | <version>${groovy.version}</version> |
| 123 | </dependency> |
| 124 | <dependency> |
shivasubedi | 8a74ced | 2021-04-29 12:48:05 +0100 | [diff] [blame] | 125 | <groupId>org.codehaus.groovy</groupId> |
| 126 | <artifactId>groovy-json</artifactId> |
| 127 | <version>${groovy.version}</version> |
| 128 | </dependency> |
| 129 | <dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 130 | <groupId>org.spockframework</groupId> |
| 131 | <artifactId>spock-core</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 132 | <version>2.0-M5-groovy-3.0</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 133 | </dependency> |
| 134 | <dependency> |
puthuparambil.aditya | 008c0ad | 2020-12-14 15:46:30 +0000 | [diff] [blame] | 135 | <groupId>org.spockframework</groupId> |
| 136 | <artifactId>spock-spring</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 137 | <version>2.0-M5-groovy-3.0</version> |
puthuparambil.aditya | 008c0ad | 2020-12-14 15:46:30 +0000 | [diff] [blame] | 138 | </dependency> |
| 139 | <dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 140 | <groupId>cglib</groupId> |
| 141 | <artifactId>cglib-nodep</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 142 | <version>3.1</version> |
Claudio David Gasparini | 1bd1c6c | 2020-11-08 22:31:43 +0100 | [diff] [blame] | 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>org.apache.commons</groupId> |
| 146 | <artifactId>commons-lang3</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 147 | <version>3.11</version> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 148 | </dependency> |
Rishi.Chail | 48830f1 | 2020-11-09 03:28:44 +0000 | [diff] [blame] | 149 | <dependency> |
Bruno Sakoto | 91bef9e | 2021-10-20 17:30:29 +0200 | [diff] [blame] | 150 | <groupId>org.jetbrains</groupId> |
| 151 | <artifactId>annotations</artifactId> |
| 152 | <version>22.0.0</version> |
| 153 | </dependency> |
| 154 | <dependency> |
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 155 | <groupId>org.testcontainers</groupId> |
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 156 | <artifactId>kafka</artifactId> |
| 157 | <version>${testcontainers.version}</version> |
| 158 | </dependency> |
| 159 | <dependency> |
| 160 | <groupId>org.testcontainers</groupId> |
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 161 | <artifactId>postgresql</artifactId> |
| 162 | <version>${testcontainers.version}</version> |
| 163 | </dependency> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 164 | <dependency> |
ToineSiebelink | 2806662 | 2021-01-27 10:47:04 +0000 | [diff] [blame] | 165 | <groupId>org.testcontainers</groupId> |
| 166 | <artifactId>spock</artifactId> |
| 167 | <version>${testcontainers.version}</version> |
| 168 | </dependency> |
| 169 | <dependency> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 170 | <groupId>com.github.spotbugs</groupId> |
| 171 | <artifactId>spotbugs</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 172 | <version>4.2.0</version> |
Claudio David Gasparini | 9f93f79 | 2020-12-18 14:37:27 +0100 | [diff] [blame] | 173 | </dependency> |
puthuparambil.aditya | 495ae8e | 2021-02-23 15:51:00 +0000 | [diff] [blame] | 174 | <dependency> |
| 175 | <groupId>org.liquibase</groupId> |
| 176 | <artifactId>liquibase-core</artifactId> |
lukegleeson | d413fb1 | 2022-07-27 15:13:45 +0100 | [diff] [blame] | 177 | <version>4.14.0</version> |
puthuparambil.aditya | 495ae8e | 2021-02-23 15:51:00 +0000 | [diff] [blame] | 178 | </dependency> |
DylanB95EST | db1f378 | 2021-06-22 16:57:16 +0100 | [diff] [blame] | 179 | <dependency> |
| 180 | <groupId>com.tngtech.archunit</groupId> |
| 181 | <artifactId>archunit-junit5</artifactId> |
shivasubedi | 34c30f8 | 2021-07-07 16:30:36 +0100 | [diff] [blame] | 182 | <version>0.18.0</version> |
DylanB95EST | db1f378 | 2021-06-22 16:57:16 +0100 | [diff] [blame] | 183 | <scope>test</scope> |
| 184 | </dependency> |
niamhcore | cf6c2e8 | 2021-12-15 13:05:08 +0000 | [diff] [blame] | 185 | <dependency> |
DylanB95EST | d042fcd | 2022-02-21 12:57:08 +0000 | [diff] [blame] | 186 | <groupId>org.mapstruct</groupId> |
| 187 | <artifactId>mapstruct</artifactId> |
| 188 | <version>${mapstruct.version}</version> |
| 189 | </dependency> |
| 190 | <dependency> |
| 191 | <groupId>org.mapstruct</groupId> |
| 192 | <artifactId>mapstruct-processor</artifactId> |
| 193 | <version>${mapstruct.version}</version> |
| 194 | </dependency> |
sourabh_sourabh | ac5ae3e | 2022-04-22 22:47:41 +0100 | [diff] [blame] | 195 | <dependency> |
| 196 | <groupId>net.logstash.logback</groupId> |
| 197 | <artifactId>logstash-logback-encoder</artifactId> |
| 198 | <version>7.0.1</version> |
| 199 | </dependency> |
| 200 | <dependency> |
| 201 | <groupId>org.codehaus.janino</groupId> |
| 202 | <artifactId>janino</artifactId> |
| 203 | <version>3.1.7</version> |
| 204 | </dependency> |
mpriyank | 0238998 | 2022-07-01 14:47:09 +0100 | [diff] [blame] | 205 | <dependency> |
| 206 | <groupId>com.hazelcast</groupId> |
| 207 | <artifactId>hazelcast-spring</artifactId> |
| 208 | <version>4.2.5</version> |
| 209 | </dependency> |
leventecsanyi | abf3244 | 2022-12-07 16:22:39 +0100 | [diff] [blame] | 210 | <dependency> |
| 211 | <groupId>com.google.guava</groupId> |
| 212 | <artifactId>guava</artifactId> |
| 213 | <version>31.1-jre</version> |
| 214 | </dependency> |
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 215 | </dependencies> |
| 216 | </dependencyManagement> |
Ruslan Kashapov | 7cca029 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 217 | </project> |