Merge "Added OpenTelemetry to CPS"
[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.5.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         <nexusproxy>https://nexus.onap.org</nexusproxy>
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>2.8.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>${nexusproxy}${releaseNexusPath}</url>
65         </repository>
66         <snapshotRepository>
67             <id>ecomp-snapshots</id>
68             <name>ECOMP Snapshot Repository</name>
69             <url>${nexusproxy}${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.2.4</version>
90                 <type>pom</type>
91                 <scope>import</scope>
92             </dependency>
93             <dependency>
94                 <groupId>org.springframework.cloud</groupId>
95                 <artifactId>spring-cloud-dependencies</artifactId>
96                 <version>2023.0.0</version>
97                 <type>pom</type>
98                 <scope>import</scope>
99             </dependency>
100             <dependency>
101                 <groupId>io.springfox</groupId>
102                 <artifactId>springfox-boot-starter</artifactId>
103                 <version>3.1.2</version>
104             </dependency>
105             <dependency>
106                 <groupId>org.springframework.boot</groupId>
107                 <artifactId>spring-boot-starter-cache</artifactId>
108                 <version>3.2.4</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.15.2</version>
120             </dependency>
121             <dependency>
122                 <groupId>com.fasterxml.jackson.dataformat</groupId>
123                 <artifactId>jackson-dataformat-xml</artifactId>
124                 <version>2.13.5</version>
125             </dependency>
126             <dependency>
127                 <groupId>com.github.spotbugs</groupId>
128                 <artifactId>spotbugs</artifactId>
129                 <version>4.2.3</version>
130             </dependency>
131             <dependency>
132                 <groupId>com.google.code.gson</groupId>
133                 <artifactId>gson</artifactId>
134                 <version>2.8.9</version>
135             </dependency>
136             <dependency>
137                 <groupId>com.google.guava</groupId>
138                 <artifactId>guava</artifactId>
139                 <version>32.1.3-jre</version>
140             </dependency>
141             <dependency>
142                 <groupId>com.hazelcast</groupId>
143                 <artifactId>hazelcast-spring</artifactId>
144                 <version>5.3.1</version>
145             </dependency>
146             <dependency>
147                 <groupId>com.squareup.okhttp3</groupId>
148                 <artifactId>mockwebserver</artifactId>
149                 <version>4.12.0</version>
150                 <scope>test</scope>
151             </dependency>
152             <dependency>
153                 <groupId>com.tngtech.archunit</groupId>
154                 <artifactId>archunit-junit5</artifactId>
155                 <version>1.2.0</version>
156                 <scope>test</scope>
157             </dependency>
158             <dependency>
159                 <groupId>jakarta.validation</groupId>
160                 <artifactId>jakarta.validation-api</artifactId>
161                 <version>3.0.2</version>
162             </dependency>
163             <dependency>
164                 <groupId>io.cloudevents</groupId>
165                 <artifactId>cloudevents-bom</artifactId>
166                 <version>2.5.0</version>
167                 <type>pom</type>
168                 <scope>import</scope>
169             </dependency>
170             <dependency>
171                 <groupId>io.gsonfire</groupId>
172                 <artifactId>gson-fire</artifactId>
173                 <version>1.9.0</version>
174             </dependency>
175             <dependency>
176                 <groupId>io.hypersistence</groupId>
177                 <artifactId>hypersistence-utils-hibernate-63</artifactId>
178                 <version>3.7.3</version>
179             </dependency>
180             <dependency>
181                 <groupId>io.opentelemetry.instrumentation</groupId>
182                 <artifactId>opentelemetry-instrumentation-bom-alpha</artifactId>
183                 <version>${version.opentelemetry-instrumentation-bom}</version>
184                 <type>pom</type>
185                 <scope>import</scope>
186             </dependency>
187             <dependency>
188                 <groupId>io.opentelemetry</groupId>
189                 <artifactId>opentelemetry-bom</artifactId>
190                 <version>1.37.0</version>
191                 <type>pom</type>
192                 <scope>import</scope>
193             </dependency>
194             <dependency>
195                 <groupId>io.swagger.core.v3</groupId>
196                 <artifactId>swagger-annotations</artifactId>
197                 <version>2.2.10</version>
198             </dependency>
199             <dependency>
200                 <groupId>io.swagger.core.v3</groupId>
201                 <artifactId>swagger-models</artifactId>
202                 <version>2.2.15</version>
203             </dependency>
204             <dependency>
205                 <groupId>net.logstash.logback</groupId>
206                 <artifactId>logstash-logback-encoder</artifactId>
207                 <version>7.0.1</version>
208             </dependency>
209             <dependency>
210                 <groupId>org.antlr</groupId>
211                 <artifactId>antlr4-runtime</artifactId>
212                 <version>4.9.2</version>
213             </dependency>
214             <dependency>
215                 <groupId>org.apache.commons</groupId>
216                 <artifactId>commons-lang3</artifactId>
217                 <version>3.11</version>
218             </dependency>
219             <dependency>
220                 <groupId>org.apache.maven.plugins</groupId>
221                 <artifactId>maven-resources-plugin</artifactId>
222                 <version>3.3.1</version>
223             </dependency>
224             <dependency>
225                 <groupId>org.codehaus.groovy</groupId>
226                 <artifactId>groovy</artifactId>
227                 <version>${groovy.version}</version>
228             </dependency>
229             <dependency>
230                 <groupId>org.codehaus.janino</groupId>
231                 <artifactId>janino</artifactId>
232                 <version>3.1.10</version>
233             </dependency>
234             <dependency>
235                 <groupId>org.codehaus.groovy</groupId>
236                 <artifactId>groovy-json</artifactId>
237                 <version>${groovy.version}</version>
238             </dependency>
239             <dependency>
240                 <groupId>org.jetbrains</groupId>
241                 <artifactId>annotations</artifactId>
242                 <version>22.0.0</version>
243             </dependency>
244             <dependency>
245                 <groupId>org.liquibase</groupId>
246                 <artifactId>liquibase-core</artifactId>
247                 <version>4.21.0</version>
248             </dependency>
249             <dependency>
250                 <groupId>org.mapstruct</groupId>
251                 <artifactId>mapstruct</artifactId>
252                 <version>${mapstruct.version}</version>
253             </dependency>
254             <dependency>
255                 <groupId>org.mapstruct</groupId>
256                 <artifactId>mapstruct-processor</artifactId>
257                 <version>${mapstruct.version}</version>
258             </dependency>
259             <dependency>
260                 <groupId>org.openapitools</groupId>
261                 <artifactId>jackson-databind-nullable</artifactId>
262                 <version>0.2.4</version>
263             </dependency>
264             <dependency>
265                 <groupId>org.opendaylight.yangtools</groupId>
266                 <artifactId>yangtools-artifacts</artifactId>
267                 <version>8.0.10</version>
268                 <type>pom</type>
269                 <scope>import</scope>
270             </dependency>
271             <dependency>
272                 <groupId>org.projectlombok</groupId>
273                 <artifactId>lombok</artifactId>
274                 <version>1.18.32</version>
275             </dependency>
276             <dependency>
277                 <groupId>org.testcontainers</groupId>
278                 <artifactId>testcontainers-bom</artifactId>
279                 <version>1.18.3</version>
280                 <type>pom</type>
281                 <scope>import</scope>
282             </dependency>
283             <dependency>
284                 <groupId>org.spockframework</groupId>
285                 <artifactId>spock-core</artifactId>
286                 <version>2.4-M1-groovy-3.0</version>
287             </dependency>
288             <dependency>
289                 <groupId>org.spockframework</groupId>
290                 <artifactId>spock-spring</artifactId>
291                 <version>2.4-M1-groovy-3.0</version>
292             </dependency>
293         </dependencies>
294     </dependencyManagement>
295 </project>