blob: f114a15db52f025b359082a7c9c4c7d14b44240e [file] [log] [blame]
Claudio David Gasparini70c17022020-10-26 10:12:10 +01001<?xml version="1.0" encoding="UTF-8"?>
ToineSiebelinkc37678a2021-05-20 16:44:21 +01002<!--
3 ============LICENSE_START=======================================================
4 Copyright (c) 2021 Linux Foundation.
lukegleesond5bda882022-03-02 14:32:47 +00005 Modifications Copyright (C) 2020-2022 Nordix Foundation
ToineSiebelinkc37678a2021-05-20 16:44:21 +01006 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19-->
Claudio David Gasparini70c17022020-10-26 10:12:10 +010020<project xmlns="http://maven.apache.org/POM/4.0.0"
Rishi.Chail48830f12020-11-09 03:28:44 +000021 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Claudio David Gasparini70c17022020-10-26 10:12:10 +010023
24 <modelVersion>4.0.0</modelVersion>
25 <groupId>org.onap.cps</groupId>
26 <artifactId>cps-dependencies</artifactId>
Bruno Sakoto0d7bf692022-03-16 17:14:39 -040027 <version>3.0.1-SNAPSHOT</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010028 <packaging>pom</packaging>
29
30 <name>${project.groupId}:${project.artifactId}</name>
31 <description>This artifact contains dependencyManagement declarations of upstream versions.</description>
32
JosephKeenan9e3fc492021-07-29 16:10:07 +010033 <repositories>
34 <repository>
35 <id>nordix-liquibase-repo</id>
36 <name>liquibase</name>
37 <url>https://artifactory.nordix.org/artifactory/liquibase</url>
38 </repository>
39 </repositories>
40
Claudio David Gasparini70c17022020-10-26 10:12:10 +010041 <properties>
shivasubedi8a74ced2021-04-29 12:48:05 +010042 <groovy.version>3.0.8</groovy.version>
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010043 <nexusproxy>https://nexus.onap.org</nexusproxy>
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010044 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
45 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
Claudio David Gasparinid45b2dc2021-01-13 13:28:07 +010046 <sonar.skip>true</sonar.skip>
Ruslan Kashapovbf02f202020-12-17 10:38:53 +020047 <testcontainers.version>1.15.1</testcontainers.version>
DylanB95ESTd042fcd2022-02-21 12:57:08 +000048 <mapstruct.version>1.4.2.Final</mapstruct.version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010049 </properties>
50
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010051 <distributionManagement>
52 <repository>
53 <id>ecomp-releases</id>
54 <name>ECOMP Release Repository</name>
55 <url>${nexusproxy}${releaseNexusPath}</url>
56 </repository>
57 <snapshotRepository>
58 <id>ecomp-snapshots</id>
59 <name>ECOMP Snapshot Repository</name>
60 <url>${nexusproxy}${snapshotNexusPath}</url>
61 </snapshotRepository>
62 </distributionManagement>
63
Claudio David Gasparini70c17022020-10-26 10:12:10 +010064 <dependencyManagement>
65 <dependencies>
66 <dependency>
67 <groupId>org.springframework.boot</groupId>
68 <artifactId>spring-boot-dependencies</artifactId>
Bruno Sakoto91bef9e2021-10-20 17:30:29 +020069 <version>2.5.5</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010070 <type>pom</type>
71 <scope>import</scope>
72 </dependency>
73 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010074 <groupId>org.springframework.cloud</groupId>
75 <artifactId>spring-cloud-dependencies</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +010076 <version>2020.0.2</version>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010077 <type>pom</type>
78 <scope>import</scope>
79 </dependency>
80 <dependency>
ToineSiebelinkad72efe2022-03-02 13:32:56 +000081 <groupId>org.springframework</groupId>
82 <artifactId>spring-web</artifactId>
83 <version>5.3.13</version>
84 </dependency>
85 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010086 <groupId>org.opendaylight.yangtools</groupId>
87 <artifactId>yangtools-artifacts</artifactId>
shivasubedi0fca83f2021-08-03 11:08:52 +010088 <version>6.0.1</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010089 <type>pom</type>
90 <scope>import</scope>
91 </dependency>
92 <dependency>
93 <groupId>io.swagger.core.v3</groupId>
94 <artifactId>swagger-annotations</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +010095 <version>2.1.4</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010096 </dependency>
97 <dependency>
puthuparambil.aditya47598112020-11-02 11:31:39 +000098 <groupId>io.springfox</groupId>
puthuparambil.aditya52cff682020-11-05 11:34:41 +000099 <artifactId>springfox-boot-starter</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100100 <version>3.0.0</version>
puthuparambil.aditya47598112020-11-02 11:31:39 +0000101 </dependency>
102 <dependency>
ToineSiebelinkad72efe2022-03-02 13:32:56 +0000103 <groupId>com.google.code.gson</groupId>
104 <artifactId>gson</artifactId>
105 <version>2.8.9</version>
106 </dependency>
107 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100108 <groupId>com.vladmihalcea</groupId>
109 <artifactId>hibernate-types-52</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100110 <version>2.10.0</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100111 </dependency>
112 <dependency>
ToineSiebelinkc37678a2021-05-20 16:44:21 +0100113 <groupId>org.antlr</groupId>
114 <artifactId>antlr4-runtime</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100115 <version>4.9.2</version>
ToineSiebelinkc37678a2021-05-20 16:44:21 +0100116 </dependency>
117 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100118 <groupId>org.codehaus.groovy</groupId>
119 <artifactId>groovy</artifactId>
120 <version>${groovy.version}</version>
121 </dependency>
122 <dependency>
shivasubedi8a74ced2021-04-29 12:48:05 +0100123 <groupId>org.codehaus.groovy</groupId>
124 <artifactId>groovy-json</artifactId>
125 <version>${groovy.version}</version>
126 </dependency>
127 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100128 <groupId>org.spockframework</groupId>
129 <artifactId>spock-core</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100130 <version>2.0-M5-groovy-3.0</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100131 </dependency>
132 <dependency>
puthuparambil.aditya008c0ad2020-12-14 15:46:30 +0000133 <groupId>org.spockframework</groupId>
134 <artifactId>spock-spring</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100135 <version>2.0-M5-groovy-3.0</version>
puthuparambil.aditya008c0ad2020-12-14 15:46:30 +0000136 </dependency>
137 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100138 <groupId>cglib</groupId>
139 <artifactId>cglib-nodep</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100140 <version>3.1</version>
Claudio David Gasparini1bd1c6c2020-11-08 22:31:43 +0100141 </dependency>
142 <dependency>
143 <groupId>org.apache.commons</groupId>
144 <artifactId>commons-lang3</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100145 <version>3.11</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100146 </dependency>
Rishi.Chail48830f12020-11-09 03:28:44 +0000147 <dependency>
Bruno Sakoto91bef9e2021-10-20 17:30:29 +0200148 <groupId>org.jetbrains</groupId>
149 <artifactId>annotations</artifactId>
150 <version>22.0.0</version>
151 </dependency>
152 <dependency>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +0200153 <groupId>org.testcontainers</groupId>
Renu Kumariff52b942021-05-27 23:16:32 -0400154 <artifactId>kafka</artifactId>
155 <version>${testcontainers.version}</version>
156 </dependency>
157 <dependency>
158 <groupId>org.testcontainers</groupId>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +0200159 <artifactId>postgresql</artifactId>
160 <version>${testcontainers.version}</version>
161 </dependency>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +0100162 <dependency>
ToineSiebelink28066622021-01-27 10:47:04 +0000163 <groupId>org.testcontainers</groupId>
164 <artifactId>spock</artifactId>
165 <version>${testcontainers.version}</version>
166 </dependency>
167 <dependency>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +0100168 <groupId>com.github.spotbugs</groupId>
169 <artifactId>spotbugs</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100170 <version>4.2.0</version>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +0100171 </dependency>
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +0000172 <dependency>
173 <groupId>org.liquibase</groupId>
174 <artifactId>liquibase-core</artifactId>
JosephKeenan9e3fc492021-07-29 16:10:07 +0100175 <version>4.4.2-nordix</version>
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +0000176 </dependency>
DylanB95ESTdb1f3782021-06-22 16:57:16 +0100177 <dependency>
178 <groupId>com.tngtech.archunit</groupId>
179 <artifactId>archunit-junit5</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100180 <version>0.18.0</version>
DylanB95ESTdb1f3782021-06-22 16:57:16 +0100181 <scope>test</scope>
182 </dependency>
niamhcorecf6c2e82021-12-15 13:05:08 +0000183 <dependency>
184 <groupId>org.apache.logging.log4j</groupId>
185 <artifactId>log4j-api</artifactId>
puthuparambil.adityab3c526f2022-01-05 10:46:35 +0000186 <version>2.17.1</version>
niamhcorecf6c2e82021-12-15 13:05:08 +0000187 </dependency>
188 <dependency>
189 <groupId>org.apache.logging.log4j</groupId>
190 <artifactId>log4j-to-slf4j</artifactId>
puthuparambil.adityab3c526f2022-01-05 10:46:35 +0000191 <version>2.17.1</version>
niamhcorecf6c2e82021-12-15 13:05:08 +0000192 </dependency>
DylanB95ESTd042fcd2022-02-21 12:57:08 +0000193 <dependency>
194 <groupId>org.mapstruct</groupId>
195 <artifactId>mapstruct</artifactId>
196 <version>${mapstruct.version}</version>
197 </dependency>
198 <dependency>
199 <groupId>org.mapstruct</groupId>
200 <artifactId>mapstruct-processor</artifactId>
201 <version>${mapstruct.version}</version>
202 </dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100203 </dependencies>
204 </dependencyManagement>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +0200205</project>