Merge "Part 1: Refactor CPS Delta code to utility class"
[cps.git] / cps-dependencies / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   Copyright (c) 2021 Linux Foundation.
5   Modifications Copyright (C) 2020-2024 Nordix Foundation
6   Modifications Copyright (C) 2022 Bell Canada.
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.
19
20   SPDX-License-Identifier: Apache-2.0
21   ============LICENSE_END=========================================================
22 -->
23 <project xmlns="http://maven.apache.org/POM/4.0.0"
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">
26
27     <modelVersion>4.0.0</modelVersion>
28     <groupId>org.onap.cps</groupId>
29     <artifactId>cps-dependencies</artifactId>
30     <version>3.7.0-SNAPSHOT</version>
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>
37         <groovy.version>3.0.18</groovy.version>
38         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
39         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
40         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
41         <sonar.skip>true</sonar.skip>
42         <testcontainers.version>1.18.3</testcontainers.version>
43         <mapstruct.version>1.4.2.Final</mapstruct.version>
44         <jetty-version>11.0.16</jetty-version>
45         <version.opentelemetry-instrumentation-bom>2.1.0-alpha</version.opentelemetry-instrumentation-bom>
46     </properties>
47
48     <build>
49         <pluginManagement>
50             <plugins>
51                 <plugin>
52                     <groupId>org.apache.maven.plugins</groupId>
53                     <artifactId>maven-deploy-plugin</artifactId>
54                     <version>3.1.2</version>
55                 </plugin>
56             </plugins>
57         </pluginManagement>
58     </build>
59
60     <distributionManagement>
61         <repository>
62             <id>ecomp-releases</id>
63             <name>ECOMP Release Repository</name>
64             <url>${onap.nexus.url}${releaseNexusPath}</url>
65         </repository>
66         <snapshotRepository>
67             <id>ecomp-snapshots</id>
68             <name>ECOMP Snapshot Repository</name>
69             <url>${onap.nexus.url}${snapshotNexusPath}</url>
70         </snapshotRepository>
71     </distributionManagement>
72
73     <dependencyManagement>
74         <dependencies>
75             <!-- S P R I N G   D E P E N D E N C I E S -->
76             <dependency>
77                 <groupId>org.springdoc</groupId>
78                 <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
79                 <version>2.4.0</version>
80             </dependency>
81             <dependency>
82                 <groupId>org.springdoc</groupId>
83                 <artifactId>springdoc-openapi-ui</artifactId>
84                 <version>1.6.6</version>
85             </dependency>
86             <dependency>
87                 <groupId>org.springframework.boot</groupId>
88                 <artifactId>spring-boot-dependencies</artifactId>
89                 <version>3.5.3</version>
90                 <type>pom</type>
91                 <scope>import</scope>
92             </dependency>
93             <dependency>
94                 <groupId>org.springframework.boot</groupId>
95                 <artifactId>spring-boot-starter-cache</artifactId>
96                 <version>3.5.3</version>
97             </dependency>
98             <dependency>
99                 <groupId>org.springframework.cloud</groupId>
100                 <artifactId>spring-cloud-dependencies</artifactId>
101                 <version>2024.0.0</version>
102                 <type>pom</type>
103                 <scope>import</scope>
104             </dependency>
105             <dependency>
106                 <groupId>io.springfox</groupId>
107                 <artifactId>springfox-boot-starter</artifactId>
108                 <version>3.1.2</version>
109             </dependency>
110             <!-- A L P H A B E T I C A L   D E P E N D E N C I E S -->
111             <dependency>
112                 <groupId>cglib</groupId>
113                 <artifactId>cglib-nodep</artifactId>
114                 <version>3.1</version>
115             </dependency>
116             <dependency>
117                 <groupId>com.fasterxml.jackson.core</groupId>
118                 <artifactId>jackson-databind</artifactId>
119                 <version>2.19.1</version>
120             </dependency>
121             <dependency>
122                 <groupId>com.fasterxml.jackson.dataformat</groupId>
123                 <artifactId>jackson-dataformat-xml</artifactId>
124                 <version>2.19.1</version>
125             </dependency>
126             <dependency>
127                 <groupId>com.github.spotbugs</groupId>
128                 <artifactId>spotbugs</artifactId>
129                 <version>4.8.6</version>
130             </dependency>
131             <dependency>
132                 <groupId>com.github.spotbugs</groupId>
133                 <artifactId>spotbugs-annotations</artifactId>
134                 <version>4.8.6</version>
135             </dependency>
136             <dependency>
137                 <groupId>com.google.code.gson</groupId>
138                 <artifactId>gson</artifactId>
139                 <version>2.11.0</version>
140             </dependency>
141             <dependency>
142                 <groupId>com.google.guava</groupId>
143                 <artifactId>guava</artifactId>
144                 <version>32.1.3-jre</version>
145             </dependency>
146             <dependency>
147                 <groupId>com.hazelcast</groupId>
148                 <artifactId>hazelcast-spring</artifactId>
149                 <version>5.5.0</version>
150             </dependency>
151             <dependency>
152                 <groupId>com.squareup.okhttp3</groupId>
153                 <artifactId>mockwebserver</artifactId>
154                 <version>4.12.0</version>
155                 <scope>test</scope>
156             </dependency>
157             <dependency>
158                 <groupId>com.tngtech.archunit</groupId>
159                 <artifactId>archunit-junit5</artifactId>
160                 <version>1.2.0</version>
161                 <scope>test</scope>
162             </dependency>
163             <dependency>
164                 <groupId>jakarta.validation</groupId>
165                 <artifactId>jakarta.validation-api</artifactId>
166                 <version>3.0.2</version>
167             </dependency>
168             <dependency>
169                 <groupId>io.cloudevents</groupId>
170                 <artifactId>cloudevents-bom</artifactId>
171                 <version>2.5.0</version>
172                 <type>pom</type>
173                 <scope>import</scope>
174             </dependency>
175             <dependency>
176                 <groupId>io.github.mweirauch</groupId>
177                 <artifactId>micrometer-jvm-extras</artifactId>
178                 <version>0.2.2</version>
179             </dependency>
180             <dependency>
181                 <groupId>io.gsonfire</groupId>
182                 <artifactId>gson-fire</artifactId>
183                 <version>1.9.0</version>
184             </dependency>
185             <dependency>
186                 <groupId>io.opentelemetry.instrumentation</groupId>
187                 <artifactId>opentelemetry-instrumentation-bom-alpha</artifactId>
188                 <version>${version.opentelemetry-instrumentation-bom}</version>
189                 <type>pom</type>
190                 <scope>import</scope>
191             </dependency>
192             <dependency>
193                 <groupId>io.opentelemetry</groupId>
194                 <artifactId>opentelemetry-bom</artifactId>
195                 <version>1.37.0</version>
196                 <type>pom</type>
197                 <scope>import</scope>
198             </dependency>
199             <dependency>
200                 <groupId>io.swagger.core.v3</groupId>
201                 <artifactId>swagger-annotations</artifactId>
202                 <version>2.2.10</version>
203             </dependency>
204             <dependency>
205                 <groupId>io.swagger.core.v3</groupId>
206                 <artifactId>swagger-models</artifactId>
207                 <version>2.2.15</version>
208             </dependency>
209             <dependency>
210                 <groupId>net.logstash.logback</groupId>
211                 <artifactId>logstash-logback-encoder</artifactId>
212                 <version>7.0.1</version>
213             </dependency>
214             <dependency>
215                 <groupId>org.antlr</groupId>
216                 <artifactId>antlr4-runtime</artifactId>
217                 <version>4.9.2</version>
218             </dependency>
219             <dependency>
220                 <groupId>org.apache.commons</groupId>
221                 <artifactId>commons-lang3</artifactId>
222                 <version>3.17.0</version>
223             </dependency>
224             <dependency>
225                 <groupId>org.apache.maven.plugins</groupId>
226                 <artifactId>maven-resources-plugin</artifactId>
227                 <version>3.3.1</version>
228             </dependency>
229             <dependency>
230                 <groupId>org.codehaus.groovy</groupId>
231                 <artifactId>groovy</artifactId>
232                 <version>${groovy.version}</version>
233             </dependency>
234             <dependency>
235                 <groupId>org.codehaus.janino</groupId>
236                 <artifactId>janino</artifactId>
237                 <version>3.1.10</version>
238             </dependency>
239             <dependency>
240                 <groupId>org.codehaus.groovy</groupId>
241                 <artifactId>groovy-json</artifactId>
242                 <version>${groovy.version}</version>
243             </dependency>
244             <dependency>
245                 <groupId>org.jetbrains</groupId>
246                 <artifactId>annotations</artifactId>
247                 <version>22.0.0</version>
248             </dependency>
249             <dependency>
250                 <groupId>org.liquibase</groupId>
251                 <artifactId>liquibase-core</artifactId>
252                 <version>4.30.0</version>
253             </dependency>
254             <dependency>
255                 <groupId>org.mapstruct</groupId>
256                 <artifactId>mapstruct</artifactId>
257                 <version>${mapstruct.version}</version>
258             </dependency>
259             <dependency>
260                 <groupId>org.mapstruct</groupId>
261                 <artifactId>mapstruct-processor</artifactId>
262                 <version>${mapstruct.version}</version>
263             </dependency>
264             <dependency>
265                 <groupId>org.openapitools</groupId>
266                 <artifactId>jackson-databind-nullable</artifactId>
267                 <version>0.2.4</version>
268             </dependency>
269             <dependency>
270                 <groupId>org.opendaylight.yangtools</groupId>
271                 <artifactId>yangtools-artifacts</artifactId>
272                 <version>8.0.10</version>
273                 <type>pom</type>
274                 <scope>import</scope>
275             </dependency>
276             <dependency>
277                 <groupId>org.projectlombok</groupId>
278                 <artifactId>lombok</artifactId>
279                 <version>1.18.32</version>
280             </dependency>
281             <dependency>
282                 <groupId>org.testcontainers</groupId>
283                 <artifactId>testcontainers-bom</artifactId>
284                 <version>1.18.3</version>
285                 <type>pom</type>
286                 <scope>import</scope>
287             </dependency>
288             <dependency>
289                 <groupId>org.spockframework</groupId>
290                 <artifactId>spock-core</artifactId>
291                 <version>2.4-M1-groovy-3.0</version>
292             </dependency>
293             <dependency>
294                 <groupId>org.spockframework</groupId>
295                 <artifactId>spock-spring</artifactId>
296                 <version>2.4-M1-groovy-3.0</version>
297             </dependency>
298         </dependencies>
299     </dependencyManagement>
300 </project>