Make NCMP integration tests use MockWebServer
[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.4.9-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     </properties>
46
47     <build>
48         <pluginManagement>
49             <plugins>
50                 <plugin>
51                     <groupId>org.apache.maven.plugins</groupId>
52                     <artifactId>maven-deploy-plugin</artifactId>
53                     <version>2.8.2</version>
54                 </plugin>
55             </plugins>
56         </pluginManagement>
57     </build>
58
59     <distributionManagement>
60         <repository>
61             <id>ecomp-releases</id>
62             <name>ECOMP Release Repository</name>
63             <url>${nexusproxy}${releaseNexusPath}</url>
64         </repository>
65         <snapshotRepository>
66             <id>ecomp-snapshots</id>
67             <name>ECOMP Snapshot Repository</name>
68             <url>${nexusproxy}${snapshotNexusPath}</url>
69         </snapshotRepository>
70     </distributionManagement>
71
72     <dependencyManagement>
73         <dependencies>
74             <!-- S P R I N G   D E P E N D E N C I E S -->
75             <dependency>
76                 <groupId>org.springdoc</groupId>
77                 <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
78                 <version>2.4.0</version>
79             </dependency>
80             <dependency>
81                 <groupId>org.springdoc</groupId>
82                 <artifactId>springdoc-openapi-ui</artifactId>
83                 <version>1.6.6</version>
84             </dependency>
85             <dependency>
86                 <groupId>org.springframework.boot</groupId>
87                 <artifactId>spring-boot-dependencies</artifactId>
88                 <version>3.2.4</version>
89                 <type>pom</type>
90                 <scope>import</scope>
91             </dependency>
92             <dependency>
93                 <groupId>org.springframework.cloud</groupId>
94                 <artifactId>spring-cloud-dependencies</artifactId>
95                 <version>2023.0.0</version>
96                 <type>pom</type>
97                 <scope>import</scope>
98             </dependency>
99             <dependency>
100                 <groupId>io.springfox</groupId>
101                 <artifactId>springfox-boot-starter</artifactId>
102                 <version>3.1.2</version>
103             </dependency>
104             <dependency>
105                 <groupId>org.springframework.boot</groupId>
106                 <artifactId>spring-boot-starter-cache</artifactId>
107                 <version>3.2.4</version>
108             </dependency>
109             <!-- A L P H A B E T I C A L   D E P E N D E N C I E S -->
110             <dependency>
111                 <groupId>cglib</groupId>
112                 <artifactId>cglib-nodep</artifactId>
113                 <version>3.1</version>
114             </dependency>
115             <dependency>
116                 <groupId>com.fasterxml.jackson.core</groupId>
117                 <artifactId>jackson-databind</artifactId>
118                 <version>2.15.2</version>
119             </dependency>
120             <dependency>
121                 <groupId>com.fasterxml.jackson.dataformat</groupId>
122                 <artifactId>jackson-dataformat-xml</artifactId>
123                 <version>2.13.5</version>
124             </dependency>
125             <dependency>
126                 <groupId>com.github.spotbugs</groupId>
127                 <artifactId>spotbugs</artifactId>
128                 <version>4.2.3</version>
129             </dependency>
130             <dependency>
131                 <groupId>com.google.code.gson</groupId>
132                 <artifactId>gson</artifactId>
133                 <version>2.8.9</version>
134             </dependency>
135             <dependency>
136                 <groupId>com.google.guava</groupId>
137                 <artifactId>guava</artifactId>
138                 <version>32.1.3-jre</version>
139             </dependency>
140             <dependency>
141                 <groupId>com.hazelcast</groupId>
142                 <artifactId>hazelcast-spring</artifactId>
143                 <version>5.3.1</version>
144             </dependency>
145             <dependency>
146                 <groupId>com.squareup.okhttp3</groupId>
147                 <artifactId>mockwebserver</artifactId>
148                 <version>4.12.0</version>
149                 <scope>test</scope>
150             </dependency>
151             <dependency>
152                 <groupId>com.tngtech.archunit</groupId>
153                 <artifactId>archunit-junit5</artifactId>
154                 <version>1.2.0</version>
155                 <scope>test</scope>
156             </dependency>
157             <dependency>
158                 <groupId>jakarta.validation</groupId>
159                 <artifactId>jakarta.validation-api</artifactId>
160                 <version>3.0.2</version>
161             </dependency>
162             <dependency>
163                 <groupId>io.cloudevents</groupId>
164                 <artifactId>cloudevents-bom</artifactId>
165                 <version>2.5.0</version>
166                 <type>pom</type>
167                 <scope>import</scope>
168             </dependency>
169             <dependency>
170                 <groupId>io.gsonfire</groupId>
171                 <artifactId>gson-fire</artifactId>
172                 <version>1.9.0</version>
173             </dependency>
174             <dependency>
175                 <groupId>io.hypersistence</groupId>
176                 <artifactId>hypersistence-utils-hibernate-63</artifactId>
177                 <version>3.7.3</version>
178             </dependency>
179             <dependency>
180                 <groupId>io.micrometer</groupId>
181                 <artifactId>micrometer-tracing-bridge-brave</artifactId>
182                 <version>1.0.0</version>
183             </dependency>
184             <dependency>
185                 <groupId>io.swagger.core.v3</groupId>
186                 <artifactId>swagger-annotations</artifactId>
187                 <version>2.2.10</version>
188             </dependency>
189             <dependency>
190                 <groupId>io.swagger.core.v3</groupId>
191                 <artifactId>swagger-models</artifactId>
192                 <version>2.2.15</version>
193             </dependency>
194             <dependency>
195                 <groupId>net.logstash.logback</groupId>
196                 <artifactId>logstash-logback-encoder</artifactId>
197                 <version>7.0.1</version>
198             </dependency>
199             <dependency>
200                 <groupId>org.antlr</groupId>
201                 <artifactId>antlr4-runtime</artifactId>
202                 <version>4.9.2</version>
203             </dependency>
204             <dependency>
205                 <groupId>org.apache.commons</groupId>
206                 <artifactId>commons-lang3</artifactId>
207                 <version>3.11</version>
208             </dependency>
209             <dependency>
210                 <groupId>org.apache.maven.plugins</groupId>
211                 <artifactId>maven-resources-plugin</artifactId>
212                 <version>3.3.1</version>
213             </dependency>
214             <dependency>
215                 <groupId>org.codehaus.groovy</groupId>
216                 <artifactId>groovy</artifactId>
217                 <version>${groovy.version}</version>
218             </dependency>
219             <dependency>
220                 <groupId>org.codehaus.janino</groupId>
221                 <artifactId>janino</artifactId>
222                 <version>3.1.10</version>
223             </dependency>
224             <dependency>
225                 <groupId>org.codehaus.groovy</groupId>
226                 <artifactId>groovy-json</artifactId>
227                 <version>${groovy.version}</version>
228             </dependency>
229             <dependency>
230                 <groupId>org.jetbrains</groupId>
231                 <artifactId>annotations</artifactId>
232                 <version>22.0.0</version>
233             </dependency>
234             <dependency>
235                 <groupId>org.liquibase</groupId>
236                 <artifactId>liquibase-core</artifactId>
237                 <version>4.21.0</version>
238             </dependency>
239             <dependency>
240                 <groupId>org.mapstruct</groupId>
241                 <artifactId>mapstruct</artifactId>
242                 <version>${mapstruct.version}</version>
243             </dependency>
244             <dependency>
245                 <groupId>org.mapstruct</groupId>
246                 <artifactId>mapstruct-processor</artifactId>
247                 <version>${mapstruct.version}</version>
248             </dependency>
249             <dependency>
250                 <groupId>org.openapitools</groupId>
251                 <artifactId>jackson-databind-nullable</artifactId>
252                 <version>0.2.4</version>
253             </dependency>
254             <dependency>
255                 <groupId>org.opendaylight.yangtools</groupId>
256                 <artifactId>yangtools-artifacts</artifactId>
257                 <version>8.0.10</version>
258                 <type>pom</type>
259                 <scope>import</scope>
260             </dependency>
261             <dependency>
262                 <groupId>org.projectlombok</groupId>
263                 <artifactId>lombok</artifactId>
264                 <version>1.18.24</version>
265             </dependency>
266             <dependency>
267                 <groupId>org.testcontainers</groupId>
268                 <artifactId>testcontainers-bom</artifactId>
269                 <version>1.18.3</version>
270                 <type>pom</type>
271                 <scope>import</scope>
272             </dependency>
273             <dependency>
274                 <groupId>org.spockframework</groupId>
275                 <artifactId>spock-core</artifactId>
276                 <version>2.4-M1-groovy-3.0</version>
277             </dependency>
278             <dependency>
279                 <groupId>org.spockframework</groupId>
280                 <artifactId>spock-spring</artifactId>
281                 <version>2.4-M1-groovy-3.0</version>
282             </dependency>
283         </dependencies>
284     </dependencyManagement>
285 </project>