blob: 5d29fbfc3b1c212f9ed7781f5991a88826f2d240 [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
Bruno Sakotof4405732022-04-21 18:08:18 -04006 Modifications Copyright (C) 2022 Bell Canada.
ToineSiebelinkc37678a2021-05-20 16:44:21 +01007 ================================================================================
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 Sakotof4405732022-04-21 18:08:18 -040019
20 SPDX-License-Identifier: Apache-2.0
ToineSiebelinkc37678a2021-05-20 16:44:21 +010021 ============LICENSE_END=========================================================
22-->
Claudio David Gasparini70c17022020-10-26 10:12:10 +010023<project xmlns="http://maven.apache.org/POM/4.0.0"
emaclee6e3f4212022-03-22 10:09:42 +000024 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 Gasparini70c17022020-10-26 10:12:10 +010026
27 <modelVersion>4.0.0</modelVersion>
28 <groupId>org.onap.cps</groupId>
29 <artifactId>cps-dependencies</artifactId>
seanbeirnef0f4fd82023-03-07 13:42:04 +000030 <version>3.2.4-SNAPSHOT</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010031 <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>
shivasubedi8a74ced2021-04-29 12:48:05 +010037 <groovy.version>3.0.8</groovy.version>
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010038 <nexusproxy>https://nexus.onap.org</nexusproxy>
Claudio David Gasparini24c217c2020-11-17 13:46:10 +010039 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
40 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
Claudio David Gasparinid45b2dc2021-01-13 13:28:07 +010041 <sonar.skip>true</sonar.skip>
mpriyankd2a1f362022-11-14 15:04:33 +000042 <testcontainers.version>1.17.3</testcontainers.version>
DylanB95ESTd042fcd2022-02-21 12:57:08 +000043 <mapstruct.version>1.4.2.Final</mapstruct.version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010044 </properties>
45
emaclee6cfd73e2022-03-24 10:10:37 +000046 <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 Gasparini24c217c2020-11-17 13:46:10 +010058 <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 Gasparini70c17022020-10-26 10:12:10 +010071 <dependencyManagement>
72 <dependencies>
73 <dependency>
74 <groupId>org.springframework.boot</groupId>
75 <artifactId>spring-boot-dependencies</artifactId>
leventecsanyi20220922022-12-01 17:20:11 +010076 <version>2.6.14</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010077 <type>pom</type>
78 <scope>import</scope>
79 </dependency>
80 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010081 <groupId>org.springframework.cloud</groupId>
82 <artifactId>spring-cloud-dependencies</artifactId>
ToineSiebelinkb0a56012022-07-14 13:38:26 +010083 <version>2021.0.3</version>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010084 <type>pom</type>
85 <scope>import</scope>
86 </dependency>
87 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010088 <groupId>org.opendaylight.yangtools</groupId>
89 <artifactId>yangtools-artifacts</artifactId>
emaclee25969bf2022-11-22 16:04:14 +000090 <version>8.0.6</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010091 <type>pom</type>
92 <scope>import</scope>
93 </dependency>
94 <dependency>
95 <groupId>io.swagger.core.v3</groupId>
96 <artifactId>swagger-annotations</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +010097 <version>2.1.4</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010098 </dependency>
99 <dependency>
puthuparambil.aditya47598112020-11-02 11:31:39 +0000100 <groupId>io.springfox</groupId>
puthuparambil.aditya52cff682020-11-05 11:34:41 +0000101 <artifactId>springfox-boot-starter</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100102 <version>3.0.0</version>
puthuparambil.aditya47598112020-11-02 11:31:39 +0000103 </dependency>
104 <dependency>
ToineSiebelinkad72efe2022-03-02 13:32:56 +0000105 <groupId>com.google.code.gson</groupId>
106 <artifactId>gson</artifactId>
107 <version>2.8.9</version>
108 </dependency>
109 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100110 <groupId>com.vladmihalcea</groupId>
111 <artifactId>hibernate-types-52</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100112 <version>2.10.0</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100113 </dependency>
114 <dependency>
ToineSiebelinkc37678a2021-05-20 16:44:21 +0100115 <groupId>org.antlr</groupId>
116 <artifactId>antlr4-runtime</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100117 <version>4.9.2</version>
ToineSiebelinkc37678a2021-05-20 16:44:21 +0100118 </dependency>
119 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100120 <groupId>org.codehaus.groovy</groupId>
121 <artifactId>groovy</artifactId>
122 <version>${groovy.version}</version>
123 </dependency>
124 <dependency>
shivasubedi8a74ced2021-04-29 12:48:05 +0100125 <groupId>org.codehaus.groovy</groupId>
126 <artifactId>groovy-json</artifactId>
127 <version>${groovy.version}</version>
128 </dependency>
129 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100130 <groupId>org.spockframework</groupId>
131 <artifactId>spock-core</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100132 <version>2.0-M5-groovy-3.0</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100133 </dependency>
134 <dependency>
puthuparambil.aditya008c0ad2020-12-14 15:46:30 +0000135 <groupId>org.spockframework</groupId>
136 <artifactId>spock-spring</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100137 <version>2.0-M5-groovy-3.0</version>
puthuparambil.aditya008c0ad2020-12-14 15:46:30 +0000138 </dependency>
139 <dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100140 <groupId>cglib</groupId>
141 <artifactId>cglib-nodep</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100142 <version>3.1</version>
Claudio David Gasparini1bd1c6c2020-11-08 22:31:43 +0100143 </dependency>
144 <dependency>
145 <groupId>org.apache.commons</groupId>
146 <artifactId>commons-lang3</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100147 <version>3.11</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100148 </dependency>
Rishi.Chail48830f12020-11-09 03:28:44 +0000149 <dependency>
Bruno Sakoto91bef9e2021-10-20 17:30:29 +0200150 <groupId>org.jetbrains</groupId>
151 <artifactId>annotations</artifactId>
152 <version>22.0.0</version>
153 </dependency>
154 <dependency>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +0200155 <groupId>org.testcontainers</groupId>
Renu Kumariff52b942021-05-27 23:16:32 -0400156 <artifactId>kafka</artifactId>
157 <version>${testcontainers.version}</version>
158 </dependency>
159 <dependency>
160 <groupId>org.testcontainers</groupId>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +0200161 <artifactId>postgresql</artifactId>
162 <version>${testcontainers.version}</version>
163 </dependency>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +0100164 <dependency>
ToineSiebelink28066622021-01-27 10:47:04 +0000165 <groupId>org.testcontainers</groupId>
166 <artifactId>spock</artifactId>
167 <version>${testcontainers.version}</version>
168 </dependency>
169 <dependency>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +0100170 <groupId>com.github.spotbugs</groupId>
171 <artifactId>spotbugs</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100172 <version>4.2.0</version>
Claudio David Gasparini9f93f792020-12-18 14:37:27 +0100173 </dependency>
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +0000174 <dependency>
175 <groupId>org.liquibase</groupId>
176 <artifactId>liquibase-core</artifactId>
lukegleesond413fb12022-07-27 15:13:45 +0100177 <version>4.14.0</version>
puthuparambil.aditya495ae8e2021-02-23 15:51:00 +0000178 </dependency>
DylanB95ESTdb1f3782021-06-22 16:57:16 +0100179 <dependency>
180 <groupId>com.tngtech.archunit</groupId>
181 <artifactId>archunit-junit5</artifactId>
shivasubedi34c30f82021-07-07 16:30:36 +0100182 <version>0.18.0</version>
DylanB95ESTdb1f3782021-06-22 16:57:16 +0100183 <scope>test</scope>
184 </dependency>
niamhcorecf6c2e82021-12-15 13:05:08 +0000185 <dependency>
DylanB95ESTd042fcd2022-02-21 12:57:08 +0000186 <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_sourabhac5ae3e2022-04-22 22:47:41 +0100195 <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>
mpriyank02389982022-07-01 14:47:09 +0100205 <dependency>
206 <groupId>com.hazelcast</groupId>
207 <artifactId>hazelcast-spring</artifactId>
208 <version>4.2.5</version>
209 </dependency>
leventecsanyiabf32442022-12-07 16:22:39 +0100210 <dependency>
211 <groupId>com.google.guava</groupId>
212 <artifactId>guava</artifactId>
213 <version>31.1-jre</version>
214 </dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100215 </dependencies>
216 </dependencyManagement>
Ruslan Kashapov7cca0292020-11-24 11:13:43 +0200217</project>