Update snapshot and/or references of policy/parent to latest snapshots
[policy/parent.git] / integration / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3    Copyright (C) 2018 Ericsson. All rights reserved.
4    Modifications Copyright (C) 2018-2023 AT&T. All rights reserved.
5    Modifications Copyright (C) 2019-2023 Nordix Foundation.
6    Modifications Copyright (C) 2020-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
24         xmlns="http://maven.apache.org/POM/4.0.0"
25         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
27                             http://maven.apache.org/xsd/maven-4.0.0.xsd">
28     <modelVersion>4.0.0</modelVersion>
29     <parent>
30         <groupId>org.onap.policy.parent</groupId>
31         <artifactId>policy-parent</artifactId>
32         <version>4.1.1-SNAPSHOT</version>
33     </parent>
34     <artifactId>integration</artifactId>
35     <packaging>pom</packaging>
36     <name>Policy Integration POM</name>
37     <description>Policy Integration POM</description>
38     <properties>
39         <java.version>17</java.version>
40         <!-- Note Well: For RELEASE/SNAPSHOT always set to the project version -->
41         <version.parent.resources>4.1.1-SNAPSHOT</version.parent.resources>
42         <jacoco.dataFile>${project.basedir}/../target/code-coverage/jacoco-ut.exec</jacoco.dataFile>
43         <repo.npm>https://nexus3.onap.org/repository/npm.public/npm/-/</repo.npm>
44         <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>
45         <docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
46         <!-- Dependency Versions -->
47         <version.aaf>2.7.4</version.aaf>
48         <version.ccsdk>1.5.1</version.ccsdk>
49         <version.cucumber>7.13.0</version.cucumber>
50         <version.dmaap>1.1.12</version.dmaap>
51         <version.docker-java>3.3.2</version.docker-java>
52         <version.drools>8.44.0.Final</version.drools>
53         <version.frontend.maven>1.13.4</version.frontend.maven>
54         <version.io.prometheus>0.16.0</version.io.prometheus>
55         <version.jackson>2.15.2</version.jackson>
56         <version.jacoco>0.8.10</version.jacoco>
57         <version.jersey>3.1.3</version.jersey>
58         <version.jetty>11.0.18</version.jetty>
59         <version.jupiter>5.10.0</version.jupiter>
60         <version.log4j>2.20.0</version.log4j>
61         <version.logback>1.4.8</version.logback>
62         <version.maven-remote-resources-plugin>3.1.0</version.maven-remote-resources-plugin>
63         <version.medeia.validator>1.1.1</version.medeia.validator>
64         <version.micrometer>1.11.4</version.micrometer>
65         <version.mockito>5.5.0</version.mockito>
66         <version.mockserver>5.15.0</version.mockserver>
67         <version.netty>4.1.100.Final</version.netty>
68         <version.nsa-cambria>1.2.1-oss</version.nsa-cambria>
69         <version.nsa-sa-client>1.3.0-oss</version.nsa-sa-client>
70         <version.plexus>3.5.0</version.plexus>
71         <version.sdc>2.0.1</version.sdc>
72         <version.slf4j>2.0.7</version.slf4j>
73         <version.spring>6.0.12</version.spring>
74         <version.springboot>3.1.4</version.springboot>
75         <version.spring-security>6.1.4</version.spring-security>
76         <version.swagger.codegen.v3>3.0.46</version.swagger.codegen.v3>
77         <version.swagger.core.v3>2.2.15</version.swagger.core.v3>
78         <surefireArgLine>
79             --add-opens java.base/java.time=ALL-UNNAMED
80             --add-opens java.base/java.util=ALL-UNNAMED
81             --add-opens java.sql/java.sql=ALL-UNNAMED
82         </surefireArgLine>
83     </properties>
84     <distributionManagement>
85         <site>
86             <id>ecomp-site</id>
87             <url>dav:${onap.nexus.url}${sitePath}</url>
88         </site>
89     </distributionManagement>
90     <dependencyManagement>
91         <dependencies>
92             <dependency>
93                 <groupId>org.onap.policy.parent</groupId>
94                 <artifactId>policy-parent-resources</artifactId>
95                 <version>${version.parent.resources}</version>
96             </dependency>
97             <dependency>
98                 <groupId>com.fasterxml.jackson.core</groupId>
99                 <artifactId>jackson-core</artifactId>
100                 <version>${version.jackson}</version>
101             </dependency>
102             <dependency>
103                 <groupId>org.glassfish.jersey.containers</groupId>
104                 <artifactId>jersey-container-servlet</artifactId>
105                 <version>${version.jersey}</version>
106             </dependency>
107             <dependency>
108                 <groupId>org.eclipse.jetty</groupId>
109                 <artifactId>jetty-server</artifactId>
110                 <version>${version.jetty}</version>
111             </dependency>
112             <dependency>
113                 <groupId>org.eclipse.jetty</groupId>
114                 <artifactId>jetty-security</artifactId>
115                 <version>${version.jetty}</version>
116             </dependency>
117             <dependency>
118                 <groupId>org.eclipse.jetty</groupId>
119                 <artifactId>jetty-util</artifactId>
120                 <version>${version.jetty}</version>
121             </dependency>
122             <dependency>
123                 <groupId>org.eclipse.jetty</groupId>
124                 <artifactId>jetty-http</artifactId>
125                 <version>${version.jetty}</version>
126             </dependency>
127
128             <!-- Prometheus Client Libraries -->
129             <dependency>
130                 <groupId>io.prometheus</groupId>
131                 <artifactId>simpleclient</artifactId>
132                 <version>${version.io.prometheus}</version>
133             </dependency>
134             <dependency>
135                 <groupId>io.prometheus</groupId>
136                 <artifactId>simpleclient_hotspot</artifactId>
137                 <version>${version.io.prometheus}</version>
138             </dependency>
139             <dependency>
140                 <groupId>io.prometheus</groupId>
141                 <artifactId>simpleclient_servlet_jakarta</artifactId>
142                 <version>${version.io.prometheus}</version>
143             </dependency>
144             <dependency>
145                 <groupId>io.prometheus</groupId>
146                 <artifactId>simpleclient_logback</artifactId>
147                 <version>${version.io.prometheus}</version>
148             </dependency>
149             <dependency>
150                 <groupId>com.google.re2j</groupId>
151                 <artifactId>re2j</artifactId>
152                 <version>1.7</version>
153             </dependency>
154             <dependency>
155                 <groupId>com.google.guava</groupId>
156                 <artifactId>guava</artifactId>
157                 <version>32.1.3-jre</version>
158             </dependency>
159
160             <!-- Jakarta dependencies -->
161             <dependency>
162                 <groupId>jakarta.xml.bind</groupId>
163                 <artifactId>jakarta.xml.bind-api</artifactId>
164                 <version>4.0.0</version>
165             </dependency>
166             <dependency>
167                 <groupId>jakarta.servlet</groupId>
168                 <artifactId>jakarta.servlet-api</artifactId>
169                 <version>6.0.0</version>
170             </dependency>
171             <dependency>
172                 <groupId>jakarta.validation</groupId>
173                 <artifactId>jakarta.validation-api</artifactId>
174                 <version>3.0.2</version>
175             </dependency>
176             <dependency>
177                 <groupId>jakarta.ws.rs</groupId>
178                 <artifactId>jakarta.ws.rs-api</artifactId>
179                 <version>3.1.0</version>
180             </dependency>
181             <dependency>
182                 <groupId>jakarta.activation</groupId>
183                 <artifactId>jakarta.activation-api</artifactId>
184                 <version>2.1.2</version>
185             </dependency>
186             <dependency>
187                 <groupId>jakarta.inject</groupId>
188                 <artifactId>jakarta.inject-api</artifactId>
189                 <version>2.0.1.MR</version>
190             </dependency>
191             <!-- Swagger -->
192             <dependency>
193                 <groupId>io.swagger.core.v3</groupId>
194                 <artifactId>swagger-annotations</artifactId>
195                 <version>${version.swagger.core.v3}</version>
196             </dependency>
197             <dependency>
198                 <groupId>io.swagger.core.v3</groupId>
199                 <artifactId>swagger-jaxrs2-jakarta</artifactId>
200                 <version>${version.swagger.core.v3}</version>
201             </dependency>
202             <dependency>
203                 <groupId>io.swagger.core.v3</groupId>
204                 <artifactId>swagger-jaxrs2-servlet-initializer-v2-jakarta</artifactId>
205                 <version>${version.swagger.core.v3}</version>
206             </dependency>
207             <dependency>
208                 <groupId>io.swagger.parser.v3</groupId>
209                 <artifactId>swagger-parser</artifactId>
210                 <version>2.1.16</version>
211             </dependency>
212
213             <!-- Test -->
214             <!-- MariaDB -->
215             <dependency>
216                 <groupId>org.mariadb.jdbc</groupId>
217                 <artifactId>mariadb-java-client</artifactId>
218                 <version>3.1.4</version>
219             </dependency>
220             <!-- Postgres -->
221             <dependency>
222                 <groupId>org.postgresql</groupId>
223                 <artifactId>postgresql</artifactId>
224                 <version>42.6.0</version>
225             </dependency>
226             <!-- Kafka -->
227             <dependency>
228                 <groupId>org.apache.kafka</groupId>
229                 <artifactId>kafka-clients</artifactId>
230                 <version>3.6.0</version>
231             </dependency>
232             <!-- HttpComponents Core (blocking I/O) -->
233             <dependency>
234                 <groupId>org.apache.httpcomponents.core5</groupId>
235                 <artifactId>httpcore5</artifactId>
236                 <version>5.2.2</version>
237             </dependency>
238             <dependency>
239                 <groupId>org.apache.httpcomponents.client5</groupId>
240                 <artifactId>httpclient5</artifactId>
241                 <version>5.2.1</version>
242             </dependency>
243
244             <!-- JSON marshalling and unmarshalling -->
245             <dependency>
246                 <groupId>com.google.code.gson</groupId>
247                 <artifactId>gson</artifactId>
248                 <version>2.10.1</version>
249             </dependency>
250             <dependency>
251                 <groupId>org.json</groupId>
252                 <artifactId>json</artifactId>
253                 <version>20231013</version>
254             </dependency>
255             <dependency>
256                 <groupId>com.worldturner.medeia</groupId>
257                 <artifactId>medeia-validator-gson</artifactId>
258                 <version>${version.medeia.validator}</version>
259             </dependency>
260             <dependency>
261                 <groupId>com.worldturner.medeia</groupId>
262                 <artifactId>medeia-validator-core</artifactId>
263                 <version>${version.medeia.validator}</version>
264             </dependency>
265             <!-- Lombok -->
266             <dependency>
267                 <groupId>org.projectlombok</groupId>
268                 <artifactId>lombok</artifactId>
269                 <version>1.18.28</version>
270             </dependency>
271             <!-- Logging -->
272             <dependency>
273                 <groupId>org.slf4j</groupId>
274                 <artifactId>slf4j-api</artifactId>
275                 <version>${version.slf4j}</version>
276             </dependency>
277             <dependency>
278                 <groupId>org.slf4j</groupId>
279                 <artifactId>slf4j-ext</artifactId>
280                 <version>${version.slf4j}</version>
281             </dependency>
282             <dependency>
283                 <groupId>ch.qos.logback</groupId>
284                 <artifactId>logback-core</artifactId>
285                 <version>${version.logback}</version>
286             </dependency>
287             <dependency>
288                 <groupId>ch.qos.logback</groupId>
289                 <artifactId>logback-classic</artifactId>
290                 <version>${version.logback}</version>
291             </dependency>
292             <dependency>
293                 <groupId>org.apache.logging.log4j</groupId>
294                 <artifactId>log4j-api</artifactId>
295                 <version>${version.log4j}</version>
296             </dependency>
297             <dependency>
298                 <groupId>org.apache.logging.log4j</groupId>
299                 <artifactId>log4j-to-slf4j</artifactId>
300                 <version>${version.log4j}</version>
301             </dependency>
302             <!-- Dmaap Client -->
303             <dependency>
304                 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
305                 <artifactId>dmaapClient</artifactId>
306                 <version>${version.dmaap}</version>
307                 <exclusions>
308                     <exclusion>
309                         <groupId>org.slf4j</groupId>
310                         <artifactId>slf4j-log4j12</artifactId>
311                     </exclusion>
312                     <exclusion>
313                         <groupId>log4j</groupId>
314                         <artifactId>log4j</artifactId>
315                     </exclusion>
316                     <exclusion>
317                         <artifactId>apache-log4j-extras</artifactId>
318                         <groupId>log4j</groupId>
319                     </exclusion>
320                 </exclusions>
321             </dependency>
322             <!-- CDS dependencies -->
323             <dependency>
324                 <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
325                 <artifactId>blueprint-proto</artifactId>
326                 <version>${version.ccsdk}</version>
327                 <exclusions>
328                     <exclusion>
329                         <groupId>io.springfox</groupId>
330                         <artifactId>springfox-boot-starter</artifactId>
331                     </exclusion>
332                     <exclusion>
333                         <groupId>org.apache.logging.log4j</groupId>
334                         <artifactId>log4j-api</artifactId>
335                     </exclusion>
336                     <exclusion>
337                         <groupId>org.apache.logging.log4j</groupId>
338                         <artifactId>log4j-to-slf4j</artifactId>
339                     </exclusion>
340                 </exclusions>
341             </dependency>
342             <!-- AAF Client -->
343             <dependency>
344                 <groupId>org.onap.aaf.authz</groupId>
345                 <artifactId>aaf-cadi-aaf</artifactId>
346                 <version>${version.aaf}</version>
347                 <exclusions>
348                     <exclusion>
349                         <groupId>log4j</groupId>
350                         <artifactId>log4j</artifactId>
351                     </exclusion>
352                 </exclusions>
353             </dependency>
354             <!-- Client library for Cambria event routing API -->
355             <dependency>
356                 <groupId>com.att.nsa</groupId>
357                 <artifactId>cambriaClient</artifactId>
358                 <version>${version.nsa-cambria}</version>
359             </dependency>
360             <dependency>
361                 <groupId>com.att.nsa</groupId>
362                 <artifactId>saClientLibrary</artifactId>
363                 <version>${version.nsa-sa-client}</version>
364             </dependency>
365             <!-- SnakeYAML -->
366             <dependency>
367                 <groupId>org.yaml</groupId>
368                 <artifactId>snakeyaml</artifactId>
369                 <version>2.0</version>
370             </dependency>
371             <!-- Drools -->
372             <!--
373             Security Issues: 1 of 2
374             This dependency is trying to upgrade security fixes
375             identified. If it is removed or manipulated then please
376             fix the 2nd change as noted below.
377             -->
378             <dependency>
379                 <groupId>org.codehaus.plexus</groupId>
380                 <artifactId>plexus-utils</artifactId>
381                 <version>${version.plexus}</version>
382             </dependency>
383             <dependency>
384                 <groupId>org.kie</groupId>
385                 <artifactId>kie-api</artifactId>
386                 <version>${version.drools}</version>
387             </dependency>
388             <dependency>
389                 <groupId>org.kie</groupId>
390                 <artifactId>kie-ci</artifactId>
391                 <version>${version.drools}</version>
392                 <!--
393                 Issue: 2 of 2
394                 Excluding these 2 dependencies in order to force upgrade security fixes
395                 identified. As declared above. Any changes here should be reflected above
396                 and vice versa.
397                 -->
398                 <exclusions>
399                     <exclusion>
400                         <groupId>org.codehaus.plexus</groupId>
401                         <artifactId>plexus-utils</artifactId>
402                     </exclusion>
403                 </exclusions>
404             </dependency>
405             <dependency>
406                 <groupId>org.drools</groupId>
407                 <artifactId>drools-core</artifactId>
408                 <version>${version.drools}</version>
409             </dependency>
410             <dependency>
411                 <groupId>org.drools</groupId>
412                 <artifactId>drools-engine</artifactId>
413                 <version>${version.drools}</version>
414             </dependency>
415             <dependency>
416                 <groupId>org.drools</groupId>
417                 <artifactId>drools-xml-support</artifactId>
418                 <version>${version.drools}</version>
419             </dependency>
420             <dependency>
421                 <groupId>org.drools</groupId>
422                 <artifactId>drools-persistence-jpa</artifactId>
423                 <version>${version.drools}</version>
424             </dependency>
425             <dependency>
426                 <groupId>org.drools</groupId>
427                 <artifactId>drools-compiler</artifactId>
428                 <version>${version.drools}</version>
429             </dependency>
430             <dependency>
431                 <groupId>org.drools</groupId>
432                 <artifactId>drools-verifier-drl</artifactId>
433                 <version>${version.drools}</version>
434             </dependency>
435             <dependency>
436                 <groupId>org.drools</groupId>
437                 <artifactId>drools-verifier-api</artifactId>
438                 <version>${version.drools}</version>
439             </dependency>
440             <dependency>
441                 <groupId>org.drools</groupId>
442                 <artifactId>drools-verifier-core</artifactId>
443                 <version>${version.drools}</version>
444             </dependency>
445             <!-- Mockserver -->
446             <dependency>
447                 <groupId>org.mock-server</groupId>
448                 <artifactId>mockserver-netty</artifactId>
449                 <version>${version.mockserver}</version>
450                 <scope>test</scope>
451             </dependency>
452             <dependency>
453                 <groupId>org.mock-server</groupId>
454                 <artifactId>mockserver-client-java</artifactId>
455                 <version>${version.mockserver}</version>
456                 <scope>test</scope>
457             </dependency>
458             <!-- Springdoc -->
459             <dependency>
460                 <groupId>org.springdoc</groupId>
461                 <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
462                 <version>2.1.0</version>
463             </dependency>
464             <!-- SDC -->
465             <dependency>
466                 <groupId>org.onap.sdc.sdc-distribution-client</groupId>
467                 <artifactId>sdc-distribution-client</artifactId>
468                 <version>${version.sdc}</version>
469             </dependency>
470             <dependency>
471                 <groupId>org.onap.sdc.sdc-tosca</groupId>
472                 <artifactId>sdc-tosca</artifactId>
473                 <version>${version.sdc}</version>
474             </dependency>
475
476             <!-- Test dependencies -->
477             <!-- In memory Database Engine -->
478             <dependency>
479                 <groupId>com.h2database</groupId>
480                 <artifactId>h2</artifactId>
481                 <version>2.2.220</version>
482                 <scope>test</scope>
483             </dependency>
484             <!-- JUNIT -->
485             <dependency>
486                 <groupId>junit</groupId>
487                 <artifactId>junit</artifactId>
488                 <version>4.13.2</version>
489                 <scope>test</scope>
490             </dependency>
491             <dependency>
492                 <groupId>org.junit.jupiter</groupId>
493                 <artifactId>junit-jupiter-engine</artifactId>
494                 <version>${version.jupiter}</version>
495                 <scope>test</scope>
496             </dependency>
497             <!-- Junit vintage -->
498             <dependency>
499                 <groupId>org.junit.vintage</groupId>
500                 <artifactId>junit-vintage-engine</artifactId>
501                 <version>${version.jupiter}</version>
502                 <scope>test</scope>
503             </dependency>
504             <!-- Cucumber Tests -->
505             <dependency>
506                 <groupId>io.cucumber</groupId>
507                 <artifactId>cucumber-java</artifactId>
508                 <version>${version.cucumber}</version>
509                 <scope>test</scope>
510             </dependency>
511             <dependency>
512                 <groupId>io.cucumber</groupId>
513                 <artifactId>cucumber-junit</artifactId>
514                 <version>${version.cucumber}</version>
515                 <scope>test</scope>
516             </dependency>
517             <!-- Exception testing -->
518             <dependency>
519                 <groupId>org.assertj</groupId>
520                 <artifactId>assertj-core</artifactId>
521                 <version>3.24.2</version>
522                 <scope>test</scope>
523             </dependency>
524             <!-- Mock libraries -->
525             <dependency>
526                 <groupId>com.openpojo</groupId>
527                 <artifactId>openpojo</artifactId>
528                 <version>0.9.1</version>
529                 <scope>test</scope>
530             </dependency>
531             <dependency>
532                 <groupId>org.mockito</groupId>
533                 <artifactId>mockito-core</artifactId>
534                 <version>${version.mockito}</version>
535                 <scope>test</scope>
536             </dependency>
537             <dependency>
538                 <groupId>org.mockito</groupId>
539                 <artifactId>mockito-junit-jupiter</artifactId>
540                 <version>${version.mockito}</version>
541                 <scope>test</scope>
542             </dependency>
543             <!-- Awaitility -->
544             <dependency>
545                 <groupId>org.awaitility</groupId>
546                 <artifactId>awaitility</artifactId>
547                 <version>4.2.0</version>
548                 <scope>test</scope>
549             </dependency>
550             <!-- Netty -->
551             <dependency>
552                 <groupId>io.netty</groupId>
553                 <artifactId>netty-all</artifactId>
554                 <version>${version.netty}</version>
555             </dependency>
556             <dependency>
557                 <groupId>io.netty</groupId>
558                 <artifactId>netty-common</artifactId>
559                 <version>${version.netty}</version>
560             </dependency>
561             <dependency>
562                 <groupId>io.netty</groupId>
563                 <artifactId>netty-codec-http2</artifactId>
564                 <version>${version.netty}</version>
565             </dependency>
566             <dependency>
567                 <groupId>io.netty</groupId>
568                 <artifactId>netty-handler-proxy</artifactId>
569                 <version>${version.netty}</version>
570             </dependency>
571             <dependency>
572                 <groupId>io.netty</groupId>
573                 <artifactId>netty-buffer</artifactId>
574                 <version>${version.netty}</version>
575             </dependency>
576             <dependency>
577                 <groupId>io.netty</groupId>
578                 <artifactId>netty-codec</artifactId>
579                 <version>${version.netty}</version>
580             </dependency>
581             <dependency>
582                 <groupId>io.netty</groupId>
583                 <artifactId>netty-handler</artifactId>
584                 <version>${version.netty}</version>
585             </dependency>
586
587             <!-- Apache Commons -->
588             <dependency>
589                 <groupId>commons-cli</groupId>
590                 <artifactId>commons-cli</artifactId>
591                 <version>1.5.0</version>
592             </dependency>
593             <dependency>
594                 <groupId>commons-codec</groupId>
595                 <artifactId>commons-codec</artifactId>
596                 <version>1.16.0</version>
597             </dependency>
598             <dependency>
599                 <groupId>commons-fileupload</groupId>
600                 <artifactId>commons-fileupload</artifactId>
601                 <version>1.5</version>
602             </dependency>
603             <dependency>
604                 <groupId>org.apache.commons</groupId>
605                 <artifactId>commons-collections4</artifactId>
606                 <version>4.4</version>
607             </dependency>
608             <dependency>
609                 <groupId>commons-io</groupId>
610                 <artifactId>commons-io</artifactId>
611                 <version>2.13.0</version>
612             </dependency>
613             <dependency>
614                 <groupId>org.apache.commons</groupId>
615                 <artifactId>commons-lang3</artifactId>
616                 <version>3.14.0</version>
617             </dependency>
618             <dependency>
619                 <groupId>org.apache.commons</groupId>
620                 <artifactId>commons-math3</artifactId>
621                 <version>3.6.1</version>
622             </dependency>
623             <dependency>
624                 <groupId>org.apache.commons</groupId>
625                 <artifactId>commons-text</artifactId>
626                 <version>1.10.0</version>
627             </dependency>
628             <dependency>
629                 <groupId>commons-logging</groupId>
630                 <artifactId>commons-logging</artifactId>
631                 <version>1.2</version>
632             </dependency>
633             <dependency>
634                 <groupId>commons-net</groupId>
635                 <artifactId>commons-net</artifactId>
636                 <version>3.9.0</version>
637             </dependency>
638             <!-- Github -->
639             <dependency>
640                 <groupId>com.github.docker-java</groupId>
641                 <artifactId>docker-java-core</artifactId>
642                 <version>${version.docker-java}</version>
643                 <scope>test</scope>
644             </dependency>
645             <dependency>
646                 <groupId>com.github.docker-java</groupId>
647                 <artifactId>docker-java</artifactId>
648                 <version>${version.docker-java}</version>
649                 <scope>test</scope>
650             </dependency>
651             <!--  Hibernate -->
652             <dependency>
653                 <groupId>org.hibernate.orm</groupId>
654                 <artifactId>hibernate-core</artifactId>
655                 <version>6.3.0.CR1</version>
656             </dependency>
657             <dependency>
658                 <groupId>org.hibernate</groupId>
659                 <artifactId>hibernate-core-jakarta</artifactId>
660                 <version>5.6.15.Final</version>
661             </dependency>
662
663             <!-- Spring -->
664             <dependency>
665                 <groupId>org.springframework</groupId>
666                 <artifactId>spring-core</artifactId>
667                 <version>${version.spring}</version>
668             </dependency>
669             <dependency>
670                 <groupId>org.springframework</groupId>
671                 <artifactId>spring-beans</artifactId>
672                 <version>${version.spring}</version>
673             </dependency>
674             <dependency>
675                 <groupId>org.springframework</groupId>
676                 <artifactId>spring-jcl</artifactId>
677                 <version>${version.spring}</version>
678             </dependency>
679             <dependency>
680                 <groupId>org.springframework</groupId>
681                 <artifactId>spring-web</artifactId>
682                 <version>${version.spring}</version>
683             </dependency>
684             <dependency>
685                 <groupId>org.springframework</groupId>
686                 <artifactId>spring-expression</artifactId>
687                 <version>${version.spring}</version>
688             </dependency>
689             <dependency>
690                 <groupId>org.springframework</groupId>
691                 <artifactId>spring-webmvc</artifactId>
692                 <version>${version.spring}</version>
693             </dependency>
694             <dependency>
695                 <groupId>org.springframework</groupId>
696                 <artifactId>spring-jdbc</artifactId>
697                 <version>${version.spring}</version>
698             </dependency>
699             <dependency>
700                 <groupId>org.springframework</groupId>
701                 <artifactId>spring-webflux</artifactId>
702                 <version>${version.spring}</version>
703             </dependency>
704             <dependency>
705                 <groupId>org.springframework.boot</groupId>
706                 <artifactId>spring-boot-starter-web</artifactId>
707                 <version>${version.springboot}</version>
708                 <!-- Exclude the default Jackson dependency -->
709                 <exclusions>
710                     <exclusion>
711                         <groupId>org.springframework.boot</groupId>
712                         <artifactId>spring-boot-starter-json</artifactId>
713                     </exclusion>
714                 </exclusions>
715             </dependency>
716             <dependency>
717                 <groupId>org.springframework.boot</groupId>
718                 <artifactId>spring-boot-starter-webflux</artifactId>
719                 <version>${version.springboot}</version>
720             </dependency>
721             <dependency>
722                 <groupId>org.springframework.boot</groupId>
723                 <artifactId>spring-boot-starter-tomcat</artifactId>
724                 <version>${version.springboot}</version>
725             </dependency>
726             <dependency>
727                 <groupId>org.springframework.boot</groupId>
728                 <artifactId>spring-boot-starter-security</artifactId>
729                 <version>${version.springboot}</version>
730             </dependency>
731             <dependency>
732                 <groupId>org.springframework.boot</groupId>
733                 <artifactId>spring-boot-starter-validation</artifactId>
734                 <version>${version.springboot}</version>
735             </dependency>
736             <dependency>
737                 <groupId>org.springframework.boot</groupId>
738                 <artifactId>spring-boot-starter-actuator</artifactId>
739                 <version>${version.springboot}</version>
740             </dependency>
741             <dependency>
742                 <groupId>org.springframework.boot</groupId>
743                 <artifactId>spring-boot-starter-data-jpa</artifactId>
744                 <version>${version.springboot}</version>
745             </dependency>
746             <dependency>
747                 <groupId>org.springframework.boot</groupId>
748                 <artifactId>spring-boot-autoconfigure</artifactId>
749                 <version>${version.springboot}</version>
750             </dependency>
751             <dependency>
752                 <groupId>org.springframework.boot</groupId>
753                 <artifactId>spring-boot-starter-aop</artifactId>
754                 <version>${version.springboot}</version>
755             </dependency>
756             <dependency>
757                 <groupId>org.springframework.boot</groupId>
758                 <artifactId>spring-boot-starter-test</artifactId>
759                 <version>${version.springboot}</version>
760                 <scope>test</scope>
761             </dependency>
762             <dependency>
763                 <groupId>org.apache.tomcat.embed</groupId>
764                 <artifactId>tomcat-embed-core</artifactId>
765                 <version>10.1.16</version>
766             </dependency>
767             <dependency>
768                 <groupId>org.springframework</groupId>
769                 <artifactId>spring-test</artifactId>
770                 <version>${version.spring}</version>
771                 <scope>test</scope>
772             </dependency>
773             <dependency>
774                 <groupId>io.micrometer</groupId>
775                 <artifactId>micrometer-registry-prometheus</artifactId>
776                 <version>${version.micrometer}</version>
777                 <scope>runtime</scope>
778             </dependency>
779             <dependency>
780                 <groupId>io.micrometer</groupId>
781                 <artifactId>micrometer-observation</artifactId>
782                 <version>${version.micrometer}</version>
783             </dependency>
784             <dependency>
785                 <groupId>io.micrometer</groupId>
786                 <artifactId>micrometer-core</artifactId>
787                 <version>${version.micrometer}</version>
788             </dependency>
789         </dependencies>
790     </dependencyManagement>
791     <scm>
792         <connection>scm:git:ssh://git.onap.org:29418/${project.groupId}</connection>
793         <developerConnection>scm:git:ssh://git.onap.org:29418/${project.groupId}</developerConnection>
794         <tag>HEAD</tag>
795         <url>https://wiki.onap.org/display/DW/Integration+Project</url>
796     </scm>
797     <profiles>
798         <profile>
799             <id>m2e</id>
800             <!-- This profile is only active when the property "m2e.version" is set,
801                 which is the case when building in Eclipse with m2e. -->
802             <activation>
803                 <property>
804                     <name>m2e.version</name>
805                 </property>
806             </activation>
807             <build>
808                 <pluginManagement>
809                     <plugins>
810                         <plugin>
811                             <groupId>org.eclipse.m2e</groupId>
812                             <artifactId>lifecycle-mapping</artifactId>
813                             <version>1.0.0</version>
814                             <configuration>
815                                 <lifecycleMappingMetadata>
816                                     <pluginExecutions>
817                                         <pluginExecution>
818                                             <pluginExecutionFilter>
819                                                 <groupId>org.apache.maven.plugins</groupId>
820                                                 <artifactId>maven-checkstyle-plugin</artifactId>
821                                                 <version>3.3.0</version>
822                                                 <goals>
823                                                     <goal>check</goal>
824                                                 </goals>
825                                             </pluginExecutionFilter>
826                                             <action>
827                                                 <ignore/>
828                                             </action>
829                                         </pluginExecution>
830                                         <pluginExecution>
831                                             <pluginExecutionFilter>
832                                                 <groupId>org.apache.maven.plugins</groupId>
833                                                 <artifactId>maven-remote-resources-plugin</artifactId>
834                                                 <versionRange>${version.maven-remote-resources-plugin},)</versionRange>
835                                                 <goals>
836                                                     <goal>bundle</goal>
837                                                     <goal>process</goal>
838                                                 </goals>
839                                             </pluginExecutionFilter>
840                                             <action>
841                                                 <ignore/>
842                                             </action>
843                                         </pluginExecution>
844                                         <pluginExecution>
845                                             <pluginExecutionFilter>
846                                                 <groupId>org.jacoco</groupId>
847                                                 <artifactId>jacoco-maven-plugin</artifactId>
848                                                 <version>${version.jacoco}</version>
849                                                 <goals>
850                                                     <goal>prepare-agent</goal>
851                                                 </goals>
852                                             </pluginExecutionFilter>
853                                             <action>
854                                                 <ignore/>
855                                             </action>
856                                         </pluginExecution>
857                                         <pluginExecution>
858                                             <pluginExecutionFilter>
859                                                 <groupId>de.jpdigital</groupId>
860                                                 <artifactId>hibernate56-ddl-maven-plugin</artifactId>
861                                                 <versionRange>[2.5.0,)</versionRange>
862                                                 <goals>
863                                                     <goal>gen-ddl</goal>
864                                                 </goals>
865                                             </pluginExecutionFilter>
866                                             <action>
867                                                 <ignore/>
868                                             </action>
869                                         </pluginExecution>
870                                         <pluginExecution>
871                                             <pluginExecutionFilter>
872                                                 <groupId>org.codehaus.groovy.maven</groupId>
873                                                 <artifactId>gmaven-plugin</artifactId>
874                                                 <versionRange>[1.5,)</versionRange>
875                                                 <goals>
876                                                     <goal>execute</goal>
877                                                 </goals>
878                                             </pluginExecutionFilter>
879                                             <action>
880                                                 <ignore/>
881                                             </action>
882                                         </pluginExecution>
883                                         <pluginExecution>
884                                             <pluginExecutionFilter>
885                                                 <groupId>org.codehaus.mojo</groupId>
886                                                 <artifactId>exec-maven-plugin</artifactId>
887                                                 <versionRange>[3.0.0,)</versionRange>
888                                                 <goals>
889                                                     <goal>exec</goal>
890                                                 </goals>
891                                             </pluginExecutionFilter>
892                                             <action>
893                                                 <ignore/>
894                                             </action>
895                                         </pluginExecution>
896                                         <pluginExecution>
897                                             <pluginExecutionFilter>
898                                                 <groupId>org.codehaus.mojo</groupId>
899                                                 <artifactId>keytool-maven-plugin</artifactId>
900                                                 <versionRange>[1.7.0,)</versionRange>
901                                                 <goals>
902                                                     <goal>generateKeyPair</goal>
903                                                 </goals>
904                                             </pluginExecutionFilter>
905                                             <action>
906                                                 <ignore/>
907                                             </action>
908                                         </pluginExecution>
909                                         <pluginExecution>
910                                             <pluginExecutionFilter>
911                                                 <groupId>com.github.eirslett</groupId>
912                                                 <artifactId>frontend-maven-plugin</artifactId>
913                                                 <version>${version.frontend.maven}</version>
914                                                 <goals>
915                                                     <goal>npm</goal>
916                                                 </goals>
917                                             </pluginExecutionFilter>
918                                             <action>
919                                                 <ignore/>
920                                             </action>
921                                         </pluginExecution>
922                                         <pluginExecution>
923                                             <pluginExecutionFilter>
924                                                 <groupId>io.swagger.codegen.v3</groupId>
925                                                 <artifactId>swagger-codegen-maven-plugin</artifactId>
926                                                 <versionRange>[${version.swagger.codegen.v3},)</versionRange>
927                                                 <goals>
928                                                     <goal>generate</goal>
929                                                 </goals>
930                                             </pluginExecutionFilter>
931                                             <action>
932                                                 <ignore/>
933                                             </action>
934                                         </pluginExecution>
935                                     </pluginExecutions>
936                                 </lifecycleMappingMetadata>
937                             </configuration>
938                         </plugin>
939                     </plugins>
940                 </pluginManagement>
941             </build>
942         </profile>
943     </profiles>
944     <build>
945         <extensions>
946             <extension>
947                 <groupId>org.apache.maven.archetype</groupId>
948                 <artifactId>archetype-packaging</artifactId>
949                 <version>3.2.1</version>
950             </extension>
951         </extensions>
952         <pluginManagement>
953             <plugins>
954                 <plugin>
955                     <groupId>com.coderplus.maven.plugins</groupId>
956                     <artifactId>copy-rename-maven-plugin</artifactId>
957                     <version>1.0.1</version>
958                 </plugin>
959                 <plugin>
960                     <groupId>com.github.eirslett</groupId>
961                     <artifactId>frontend-maven-plugin</artifactId>
962                     <version>${version.frontend.maven}</version>
963                 </plugin>
964                 <plugin>
965                     <groupId>io.fabric8</groupId>
966                     <artifactId>docker-maven-plugin</artifactId>
967                     <version>0.43.4</version>
968                 </plugin>
969                 <plugin>
970                     <groupId>io.github.git-commit-id</groupId>
971                     <artifactId>git-commit-id-maven-plugin</artifactId>
972                     <version>6.0.0</version>
973                     <executions>
974                         <execution>
975                             <goals>
976                                 <goal>revision</goal>
977                             </goals>
978                         </execution>
979                     </executions>
980                     <configuration>
981                         <skipPoms>false</skipPoms>
982                         <generateGitPropertiesFile>false</generateGitPropertiesFile>
983                         <includeOnlyProperties>
984                             <includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty>
985                             <includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty>
986                         </includeOnlyProperties>
987                         <commitIdGenerationMode>full</commitIdGenerationMode>
988                         <dateFormat>yyyy-MM-dd'T'HH:mm:ss.SSS'Z'</dateFormat>
989                         <dateFormatTimeZone>UTC</dateFormatTimeZone>
990                     </configuration>
991                 </plugin>
992                 <plugin>
993                     <groupId>io.swagger.codegen.v3</groupId>
994                     <artifactId>swagger-codegen-maven-plugin</artifactId>
995                     <version>${version.swagger.codegen.v3}</version>
996                 </plugin>
997                 <plugin>
998                     <groupId>org.apache.maven.plugins</groupId>
999                     <artifactId>maven-archetype-plugin</artifactId>
1000                     <version>3.2.1</version>
1001                 </plugin>
1002                 <plugin>
1003                     <groupId>org.apache.maven.plugins</groupId>
1004                     <artifactId>maven-assembly-plugin</artifactId>
1005                     <version>3.6.0</version>
1006                 </plugin>
1007                 <plugin>
1008                     <groupId>org.apache.maven.plugins</groupId>
1009                     <artifactId>maven-clean-plugin</artifactId>
1010                     <version>3.3.1</version>
1011                 </plugin>
1012                 <plugin>
1013                     <groupId>org.apache.maven.plugins</groupId>
1014                     <artifactId>maven-compiler-plugin</artifactId>
1015                     <version>3.11.0</version>
1016                     <configuration>
1017                         <encoding>${project.build.sourceEncoding}</encoding>
1018                         <release>${java.version}</release>
1019                     </configuration>
1020                 </plugin>
1021                 <plugin>
1022                     <groupId>org.apache.maven.plugins</groupId>
1023                     <artifactId>maven-dependency-plugin</artifactId>
1024                     <version>3.6.0</version>
1025                 </plugin>
1026                 <plugin>
1027                     <groupId>org.apache.maven.plugins</groupId>
1028                     <artifactId>maven-eclipse-plugin</artifactId>
1029                     <version>2.10</version>
1030                 </plugin>
1031                 <plugin>
1032                     <groupId>org.apache.maven.plugins</groupId>
1033                     <artifactId>maven-install-plugin</artifactId>
1034                     <version>3.1.1</version>
1035                 </plugin>
1036                 <plugin>
1037                     <groupId>org.apache.maven.plugins</groupId>
1038                     <artifactId>maven-jar-plugin</artifactId>
1039                     <version>3.3.0</version>
1040                 </plugin>
1041                 <plugin>
1042                     <groupId>org.apache.maven.plugins</groupId>
1043                     <artifactId>maven-javadoc-plugin</artifactId>
1044                     <version>3.6.0</version>
1045                 </plugin>
1046                 <plugin>
1047                     <groupId>org.apache.maven.plugins</groupId>
1048                     <artifactId>maven-pmd-plugin</artifactId>
1049                     <version>3.21.0</version>
1050                 </plugin>
1051                 <plugin>
1052                     <groupId>org.apache.maven.plugins</groupId>
1053                     <artifactId>maven-release-plugin</artifactId>
1054                     <version>3.0.1</version>
1055                 </plugin>
1056                 <plugin>
1057                     <groupId>org.apache.maven.plugins</groupId>
1058                     <artifactId>maven-remote-resources-plugin</artifactId>
1059                     <version>${version.maven-remote-resources-plugin}</version>
1060                 </plugin>
1061                 <plugin>
1062                     <groupId>org.apache.maven.plugins</groupId>
1063                     <artifactId>maven-resources-plugin</artifactId>
1064                     <version>3.3.1</version>
1065                 </plugin>
1066                 <plugin>
1067                     <groupId>org.apache.maven.plugins</groupId>
1068                     <artifactId>maven-source-plugin</artifactId>
1069                     <version>3.3.0</version>
1070                 </plugin>
1071                 <plugin>
1072                     <groupId>org.apache.maven.plugins</groupId>
1073                     <artifactId>maven-shade-plugin</artifactId>
1074                     <version>3.5.0</version>
1075                 </plugin>
1076                 <plugin>
1077                     <groupId>org.apache.maven.plugins</groupId>
1078                     <artifactId>maven-war-plugin</artifactId>
1079                     <version>3.4.0</version>
1080                 </plugin>
1081                 <plugin>
1082                     <groupId>org.codehaus.gmaven</groupId>
1083                     <artifactId>groovy-maven-plugin</artifactId>
1084                     <version>2.1.1</version>
1085                 </plugin>
1086                 <plugin>
1087                     <groupId>org.codehaus.mojo</groupId>
1088                     <artifactId>versions-maven-plugin</artifactId>
1089                     <version>2.16.0</version>
1090                 </plugin>
1091                 <plugin>
1092                     <groupId>org.codehaus.mojo</groupId>
1093                     <artifactId>exec-maven-plugin</artifactId>
1094                     <version>3.1.0</version>
1095                 </plugin>
1096                 <plugin>
1097                     <groupId>org.kie</groupId>
1098                     <artifactId>kie-maven-plugin</artifactId>
1099                     <version>${version.drools}</version>
1100                     <extensions>true</extensions>
1101                 </plugin>
1102                 <plugin>
1103                     <groupId>org.springframework.boot</groupId>
1104                     <artifactId>spring-boot-maven-plugin</artifactId>
1105                     <version>${version.springboot}</version>
1106                 </plugin>
1107                 <plugin>
1108                     <groupId>org.apache.maven.plugins</groupId>
1109                     <artifactId>maven-surefire-plugin</artifactId>
1110                     <version>3.1.2</version>
1111                 </plugin>
1112             </plugins>
1113         </pluginManagement>
1114         <plugins>
1115             <plugin>
1116                 <groupId>org.apache.maven.plugins</groupId>
1117                 <artifactId>maven-compiler-plugin</artifactId>
1118                 <configuration>
1119                     <encoding>${project.build.sourceEncoding}</encoding>
1120                     <release>${java.version}</release>
1121                 </configuration>
1122             </plugin>
1123             <plugin>
1124                 <groupId>org.apache.maven.plugins</groupId>
1125                 <artifactId>maven-surefire-plugin</artifactId>
1126                 <configuration>
1127                     <argLine>@{surefireArgLine}</argLine>
1128                 </configuration>
1129             </plugin>
1130             <plugin>
1131                 <groupId>org.jacoco</groupId>
1132                 <artifactId>jacoco-maven-plugin</artifactId>
1133                 <version>${version.jacoco}</version>
1134                 <configuration>
1135                     <excludes>
1136                         <exclude>org/drools/**/*</exclude>
1137                     </excludes>
1138                 </configuration>
1139                 <executions>
1140                     <execution>
1141                         <id>pre-unit-test</id>
1142                         <goals>
1143                             <goal>prepare-agent</goal>
1144                         </goals>
1145                         <configuration>
1146                             <destFile>${jacoco.dataFile}</destFile>
1147                             <append>true</append>
1148                         </configuration>
1149                     </execution>
1150                     <execution>
1151                         <id>post-unit-test</id>
1152                         <phase>test</phase>
1153                         <goals>
1154                             <goal>report</goal>
1155                         </goals>
1156                         <configuration>
1157                             <dataFile>${jacoco.dataFile}</dataFile>
1158                         </configuration>
1159                     </execution>
1160                     <execution>
1161                         <id>pre-integration-test</id>
1162                         <phase>pre-integration-test</phase>
1163                         <goals>
1164                             <goal>prepare-agent</goal>
1165                         </goals>
1166                         <configuration>
1167                             <skip>true</skip>
1168                         </configuration>
1169                     </execution>
1170                     <execution>
1171                         <id>post-integration-test</id>
1172                         <phase>post-integration-test</phase>
1173                         <goals>
1174                             <goal>report</goal>
1175                         </goals>
1176                         <configuration>
1177                             <skip>true</skip>
1178                         </configuration>
1179                     </execution>
1180                     <execution>
1181                         <id>report-aggregate</id>
1182                         <phase>prepare-package</phase>
1183                         <goals>
1184                             <goal>report-aggregate</goal>
1185                         </goals>
1186                     </execution>
1187                 </executions>
1188             </plugin>
1189             <plugin>
1190                 <groupId>org.apache.maven.plugins</groupId>
1191                 <artifactId>maven-checkstyle-plugin</artifactId>
1192                 <executions>
1193                     <execution>
1194                         <id>onap-license</id>
1195                         <goals>
1196                             <goal>check</goal>
1197                         </goals>
1198                         <phase>process-sources</phase>
1199                         <configuration>
1200                             <configLocation>onap-checkstyle/check-license.xml</configLocation>
1201                             <includeResources>false</includeResources>
1202                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
1203                             <includeTestResources>false</includeTestResources>
1204                             <sourceDirectories>
1205                                 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
1206                             </sourceDirectories>
1207                             <consoleOutput>true</consoleOutput>
1208                             <failOnViolation>true</failOnViolation>
1209                             <violationSeverity>warning</violationSeverity>
1210                         </configuration>
1211                     </execution>
1212                     <execution>
1213                         <id>onap-java-style</id>
1214                         <goals>
1215                             <goal>check</goal>
1216                         </goals>
1217                         <phase>process-sources</phase>
1218                         <configuration>
1219                             <!-- Use Google Java Style Guide:
1220                               https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
1221                               with minor changes -->
1222                             <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
1223                             <!-- <sourceDirectory> is needed so that checkstyle ignores the generated
1224                                 sources directory -->
1225                             <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
1226                             <includeResources>true</includeResources>
1227                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
1228                             <includeTestResources>true</includeTestResources>
1229                             <consoleOutput>true</consoleOutput>
1230                             <failOnViolation>true</failOnViolation>
1231                             <violationSeverity>warning</violationSeverity>
1232                         </configuration>
1233                     </execution>
1234                 </executions>
1235                 <dependencies>
1236                     <dependency>
1237                         <groupId>org.onap.oparent</groupId>
1238                         <artifactId>checkstyle</artifactId>
1239                         <version>${oparent.version}</version>
1240                         <scope>compile</scope>
1241                     </dependency>
1242                 </dependencies>
1243             </plugin>
1244         </plugins>
1245     </build>
1246 </project>