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.2-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.2-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.ccsdk>1.5.3</version.ccsdk>
48         <version.cucumber>7.13.0</version.cucumber>
49         <version.docker-java>3.3.2</version.docker-java>
50         <version.drools>8.44.0.Final</version.drools>
51         <version.frontend.maven>1.13.4</version.frontend.maven>
52         <version.io.prometheus>0.16.0</version.io.prometheus>
53         <version.jackson>2.16.1</version.jackson>
54         <version.jacoco>0.8.10</version.jacoco>
55         <version.jersey>3.1.5</version.jersey>
56         <version.jetty>11.0.20</version.jetty>
57         <version.jupiter>5.10.1</version.jupiter>
58         <version.kafka>3.6.1</version.kafka>
59         <version.log4j>2.20.0</version.log4j>
60         <version.logback>1.4.14</version.logback>
61         <version.maven-remote-resources-plugin>3.1.0</version.maven-remote-resources-plugin>
62         <version.medeia.validator>1.1.1</version.medeia.validator>
63         <version.micrometer>1.11.4</version.micrometer>
64         <version.mockito>5.5.0</version.mockito>
65         <version.mockserver>5.15.0</version.mockserver>
66         <version.netty>4.1.100.Final</version.netty>
67         <version.nsa-cambria>1.2.1-oss</version.nsa-cambria>
68         <version.nsa-sa-client>1.3.0-oss</version.nsa-sa-client>
69         <version.plexus>3.5.0</version.plexus>
70         <version.sdc-dist>2.1.1</version.sdc-dist>
71         <version.sdc-tosca>1.9.0</version.sdc-tosca>
72         <version.slf4j>2.0.11</version.slf4j>
73         <version.spring>6.0.16</version.spring>
74         <version.springboot>3.1.8</version.springboot>
75         <version.spring-security>6.1.6</version.spring-security>
76         <version.swagger.codegen.v3>3.0.52</version.swagger.codegen.v3>
77         <version.swagger.core.v3>2.2.20</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</groupId>
99                 <artifactId>jackson-bom</artifactId>
100                 <version>${version.jackson}</version>
101                 <type>pom</type>
102             </dependency>
103             <dependency>
104                 <groupId>org.glassfish.jersey.containers</groupId>
105                 <artifactId>jersey-container-servlet</artifactId>
106                 <version>${version.jersey}</version>
107             </dependency>
108             <dependency>
109                 <groupId>org.eclipse.jetty</groupId>
110                 <artifactId>jetty-server</artifactId>
111                 <version>${version.jetty}</version>
112             </dependency>
113             <dependency>
114                 <groupId>org.eclipse.jetty</groupId>
115                 <artifactId>jetty-security</artifactId>
116                 <version>${version.jetty}</version>
117             </dependency>
118             <dependency>
119                 <groupId>org.eclipse.jetty</groupId>
120                 <artifactId>jetty-util</artifactId>
121                 <version>${version.jetty}</version>
122             </dependency>
123             <dependency>
124                 <groupId>org.eclipse.jetty</groupId>
125                 <artifactId>jetty-http</artifactId>
126                 <version>${version.jetty}</version>
127             </dependency>
128
129             <!-- Prometheus Client Libraries -->
130             <dependency>
131                 <groupId>io.prometheus</groupId>
132                 <artifactId>simpleclient</artifactId>
133                 <version>${version.io.prometheus}</version>
134             </dependency>
135             <dependency>
136                 <groupId>io.prometheus</groupId>
137                 <artifactId>simpleclient_hotspot</artifactId>
138                 <version>${version.io.prometheus}</version>
139             </dependency>
140             <dependency>
141                 <groupId>io.prometheus</groupId>
142                 <artifactId>simpleclient_servlet_jakarta</artifactId>
143                 <version>${version.io.prometheus}</version>
144             </dependency>
145             <dependency>
146                 <groupId>io.prometheus</groupId>
147                 <artifactId>simpleclient_logback</artifactId>
148                 <version>${version.io.prometheus}</version>
149             </dependency>
150             <dependency>
151                 <groupId>com.google.re2j</groupId>
152                 <artifactId>re2j</artifactId>
153                 <version>1.7</version>
154             </dependency>
155             <dependency>
156                 <groupId>com.google.guava</groupId>
157                 <artifactId>guava</artifactId>
158                 <version>32.1.3-jre</version>
159             </dependency>
160
161             <!-- Jakarta dependencies -->
162             <dependency>
163                 <groupId>jakarta.xml.bind</groupId>
164                 <artifactId>jakarta.xml.bind-api</artifactId>
165                 <version>4.0.1</version>
166             </dependency>
167             <dependency>
168                 <groupId>com.sun.xml.bind</groupId>
169                 <artifactId>jaxb-impl</artifactId>
170                 <version>4.0.4</version>
171             </dependency>
172             <dependency>
173                 <groupId>org.glassfish.jaxb</groupId>
174                 <artifactId>jaxb-core</artifactId>
175                 <version>4.0.4</version>
176             </dependency>
177             <dependency>
178                 <groupId>org.glassfish.jaxb</groupId>
179                 <artifactId>jaxb-runtime</artifactId>
180                 <version>4.0.4</version>
181                 <scope>compile</scope>
182             </dependency>
183             <dependency>
184                 <groupId>jakarta.servlet</groupId>
185                 <artifactId>jakarta.servlet-api</artifactId>
186                 <version>6.0.0</version>
187             </dependency>
188             <dependency>
189                 <groupId>jakarta.validation</groupId>
190                 <artifactId>jakarta.validation-api</artifactId>
191                 <version>3.0.2</version>
192             </dependency>
193             <dependency>
194                 <groupId>jakarta.ws.rs</groupId>
195                 <artifactId>jakarta.ws.rs-api</artifactId>
196                 <version>3.1.0</version>
197             </dependency>
198             <dependency>
199                 <groupId>jakarta.activation</groupId>
200                 <artifactId>jakarta.activation-api</artifactId>
201                 <version>2.1.2</version>
202             </dependency>
203             <dependency>
204                 <groupId>jakarta.inject</groupId>
205                 <artifactId>jakarta.inject-api</artifactId>
206                 <version>2.0.1</version>
207             </dependency>
208             <!-- Swagger -->
209             <dependency>
210                 <groupId>io.swagger.core.v3</groupId>
211                 <artifactId>swagger-annotations</artifactId>
212                 <version>${version.swagger.core.v3}</version>
213             </dependency>
214             <dependency>
215                 <groupId>io.swagger.core.v3</groupId>
216                 <artifactId>swagger-jaxrs2-jakarta</artifactId>
217                 <version>${version.swagger.core.v3}</version>
218             </dependency>
219             <dependency>
220                 <groupId>io.swagger.core.v3</groupId>
221                 <artifactId>swagger-jaxrs2-servlet-initializer-v2-jakarta</artifactId>
222                 <version>${version.swagger.core.v3}</version>
223             </dependency>
224             <dependency>
225                 <groupId>io.swagger.parser.v3</groupId>
226                 <artifactId>swagger-parser</artifactId>
227                 <version>2.1.16</version>
228             </dependency>
229
230             <!-- Test -->
231             <!-- MariaDB -->
232             <dependency>
233                 <groupId>org.mariadb.jdbc</groupId>
234                 <artifactId>mariadb-java-client</artifactId>
235                 <version>3.1.4</version>
236             </dependency>
237             <!-- Postgres -->
238             <dependency>
239                 <groupId>org.postgresql</groupId>
240                 <artifactId>postgresql</artifactId>
241                 <version>42.6.0</version>
242             </dependency>
243             <!-- Kafka -->
244             <dependency>
245                 <groupId>org.apache.kafka</groupId>
246                 <artifactId>kafka-clients</artifactId>
247                 <version>${version.kafka}</version>
248             </dependency>
249             <!-- HttpComponents Core (blocking I/O) -->
250             <dependency>
251                 <groupId>org.apache.httpcomponents.core5</groupId>
252                 <artifactId>httpcore5</artifactId>
253                 <version>5.2.2</version>
254             </dependency>
255             <dependency>
256                 <groupId>org.apache.httpcomponents.client5</groupId>
257                 <artifactId>httpclient5</artifactId>
258                 <version>5.2.1</version>
259             </dependency>
260
261             <!-- JSON marshalling and unmarshalling -->
262             <dependency>
263                 <groupId>com.google.code.gson</groupId>
264                 <artifactId>gson</artifactId>
265                 <version>2.10.1</version>
266             </dependency>
267             <dependency>
268                 <groupId>org.json</groupId>
269                 <artifactId>json</artifactId>
270                 <version>20231013</version>
271             </dependency>
272             <dependency>
273                 <groupId>com.worldturner.medeia</groupId>
274                 <artifactId>medeia-validator-gson</artifactId>
275                 <version>${version.medeia.validator}</version>
276             </dependency>
277             <dependency>
278                 <groupId>com.worldturner.medeia</groupId>
279                 <artifactId>medeia-validator-core</artifactId>
280                 <version>${version.medeia.validator}</version>
281             </dependency>
282             <dependency>
283                 <groupId>com.jayway.jsonpath</groupId>
284                 <artifactId>json-path</artifactId>
285                 <version>2.9.0</version>
286             </dependency>
287             <!-- Lombok -->
288             <dependency>
289                 <groupId>org.projectlombok</groupId>
290                 <artifactId>lombok</artifactId>
291                 <version>1.18.28</version>
292             </dependency>
293             <!-- Logging -->
294             <dependency>
295                 <groupId>org.slf4j</groupId>
296                 <artifactId>slf4j-api</artifactId>
297                 <version>${version.slf4j}</version>
298             </dependency>
299             <dependency>
300                 <groupId>org.slf4j</groupId>
301                 <artifactId>slf4j-ext</artifactId>
302                 <version>${version.slf4j}</version>
303             </dependency>
304             <dependency>
305                 <groupId>ch.qos.logback</groupId>
306                 <artifactId>logback-core</artifactId>
307                 <version>${version.logback}</version>
308             </dependency>
309             <dependency>
310                 <groupId>ch.qos.logback</groupId>
311                 <artifactId>logback-classic</artifactId>
312                 <version>${version.logback}</version>
313             </dependency>
314             <dependency>
315                 <groupId>org.apache.logging.log4j</groupId>
316                 <artifactId>log4j-api</artifactId>
317                 <version>${version.log4j}</version>
318             </dependency>
319             <dependency>
320                 <groupId>org.apache.logging.log4j</groupId>
321                 <artifactId>log4j-to-slf4j</artifactId>
322                 <version>${version.log4j}</version>
323             </dependency>
324             <!-- CDS dependencies -->
325             <dependency>
326                 <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
327                 <artifactId>blueprint-proto</artifactId>
328                 <version>${version.ccsdk}</version>
329                 <exclusions>
330                     <exclusion>
331                         <groupId>io.springfox</groupId>
332                         <artifactId>springfox-boot-starter</artifactId>
333                     </exclusion>
334                     <exclusion>
335                         <groupId>org.apache.logging.log4j</groupId>
336                         <artifactId>log4j-api</artifactId>
337                     </exclusion>
338                     <exclusion>
339                         <groupId>org.apache.logging.log4j</groupId>
340                         <artifactId>log4j-to-slf4j</artifactId>
341                     </exclusion>
342                 </exclusions>
343             </dependency>
344             <!-- Client library for Cambria event routing API -->
345             <dependency>
346                 <groupId>com.att.nsa</groupId>
347                 <artifactId>cambriaClient</artifactId>
348                 <version>${version.nsa-cambria}</version>
349             </dependency>
350             <dependency>
351                 <groupId>com.att.nsa</groupId>
352                 <artifactId>saClientLibrary</artifactId>
353                 <version>${version.nsa-sa-client}</version>
354             </dependency>
355             <!-- SnakeYAML -->
356             <dependency>
357                 <groupId>org.yaml</groupId>
358                 <artifactId>snakeyaml</artifactId>
359                 <version>2.2</version>
360             </dependency>
361             <!-- Drools -->
362             <!--
363             Security Issues: 1 of 2
364             This dependency is trying to upgrade security fixes
365             identified. If it is removed or manipulated then please
366             fix the 2nd change as noted below.
367             -->
368             <dependency>
369                 <groupId>org.codehaus.plexus</groupId>
370                 <artifactId>plexus-utils</artifactId>
371                 <version>${version.plexus}</version>
372             </dependency>
373             <dependency>
374                 <groupId>org.kie</groupId>
375                 <artifactId>kie-api</artifactId>
376                 <version>${version.drools}</version>
377             </dependency>
378             <dependency>
379                 <groupId>org.kie</groupId>
380                 <artifactId>kie-ci</artifactId>
381                 <version>${version.drools}</version>
382                 <!--
383                 Issue: 2 of 2
384                 Excluding these 2 dependencies in order to force upgrade security fixes
385                 identified. As declared above. Any changes here should be reflected above
386                 and vice versa.
387                 -->
388                 <exclusions>
389                     <exclusion>
390                         <groupId>org.codehaus.plexus</groupId>
391                         <artifactId>plexus-utils</artifactId>
392                     </exclusion>
393                 </exclusions>
394             </dependency>
395             <dependency>
396                 <groupId>org.drools</groupId>
397                 <artifactId>drools-core</artifactId>
398                 <version>${version.drools}</version>
399             </dependency>
400             <dependency>
401                 <groupId>org.drools</groupId>
402                 <artifactId>drools-engine</artifactId>
403                 <version>${version.drools}</version>
404             </dependency>
405             <dependency>
406                 <groupId>org.drools</groupId>
407                 <artifactId>drools-xml-support</artifactId>
408                 <version>${version.drools}</version>
409             </dependency>
410             <dependency>
411                 <groupId>org.drools</groupId>
412                 <artifactId>drools-persistence-jpa</artifactId>
413                 <version>${version.drools}</version>
414             </dependency>
415             <dependency>
416                 <groupId>org.drools</groupId>
417                 <artifactId>drools-compiler</artifactId>
418                 <version>${version.drools}</version>
419             </dependency>
420             <dependency>
421                 <groupId>org.drools</groupId>
422                 <artifactId>drools-verifier-drl</artifactId>
423                 <version>${version.drools}</version>
424             </dependency>
425             <dependency>
426                 <groupId>org.drools</groupId>
427                 <artifactId>drools-verifier-api</artifactId>
428                 <version>${version.drools}</version>
429             </dependency>
430             <dependency>
431                 <groupId>org.drools</groupId>
432                 <artifactId>drools-verifier-core</artifactId>
433                 <version>${version.drools}</version>
434             </dependency>
435             <!-- Mockserver -->
436             <dependency>
437                 <groupId>org.mock-server</groupId>
438                 <artifactId>mockserver-netty</artifactId>
439                 <version>${version.mockserver}</version>
440                 <scope>test</scope>
441             </dependency>
442             <dependency>
443                 <groupId>org.mock-server</groupId>
444                 <artifactId>mockserver-client-java</artifactId>
445                 <version>${version.mockserver}</version>
446                 <scope>test</scope>
447             </dependency>
448             <!-- Springdoc -->
449             <dependency>
450                 <groupId>org.springdoc</groupId>
451                 <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
452                 <version>2.1.0</version>
453             </dependency>
454             <!-- SDC -->
455             <dependency>
456                 <groupId>org.onap.sdc.sdc-distribution-client</groupId>
457                 <artifactId>sdc-distribution-client</artifactId>
458                 <version>${version.sdc-dist}</version>
459             </dependency>
460             <dependency>
461                 <groupId>org.onap.sdc.sdc-tosca</groupId>
462                 <artifactId>sdc-tosca</artifactId>
463                 <version>${version.sdc-tosca}</version>
464             </dependency>
465
466             <!-- Test dependencies -->
467             <!-- In memory Database Engine -->
468             <dependency>
469                 <groupId>com.h2database</groupId>
470                 <artifactId>h2</artifactId>
471                 <version>2.2.220</version>
472                 <scope>test</scope>
473             </dependency>
474             <!-- JUNIT -->
475             <dependency>
476                 <groupId>junit</groupId>
477                 <artifactId>junit</artifactId>
478                 <version>4.13.2</version>
479                 <scope>test</scope>
480             </dependency>
481             <dependency>
482                 <groupId>org.junit.jupiter</groupId>
483                 <artifactId>junit-jupiter-engine</artifactId>
484                 <version>${version.jupiter}</version>
485                 <scope>test</scope>
486             </dependency>
487             <!-- Junit vintage -->
488             <dependency>
489                 <groupId>org.junit.vintage</groupId>
490                 <artifactId>junit-vintage-engine</artifactId>
491                 <version>${version.jupiter}</version>
492                 <scope>test</scope>
493             </dependency>
494             <!-- Cucumber Tests -->
495             <dependency>
496                 <groupId>io.cucumber</groupId>
497                 <artifactId>cucumber-java</artifactId>
498                 <version>${version.cucumber}</version>
499                 <scope>test</scope>
500             </dependency>
501             <dependency>
502                 <groupId>io.cucumber</groupId>
503                 <artifactId>cucumber-junit</artifactId>
504                 <version>${version.cucumber}</version>
505                 <scope>test</scope>
506             </dependency>
507             <!-- Exception testing -->
508             <dependency>
509                 <groupId>org.assertj</groupId>
510                 <artifactId>assertj-core</artifactId>
511                 <version>3.24.2</version>
512                 <scope>test</scope>
513             </dependency>
514             <!-- Mock libraries -->
515             <dependency>
516                 <groupId>com.openpojo</groupId>
517                 <artifactId>openpojo</artifactId>
518                 <version>0.9.1</version>
519                 <scope>test</scope>
520             </dependency>
521             <dependency>
522                 <groupId>org.mockito</groupId>
523                 <artifactId>mockito-core</artifactId>
524                 <version>${version.mockito}</version>
525                 <scope>test</scope>
526             </dependency>
527             <dependency>
528                 <groupId>org.mockito</groupId>
529                 <artifactId>mockito-junit-jupiter</artifactId>
530                 <version>${version.mockito}</version>
531                 <scope>test</scope>
532             </dependency>
533             <!-- Awaitility -->
534             <dependency>
535                 <groupId>org.awaitility</groupId>
536                 <artifactId>awaitility</artifactId>
537                 <version>4.2.0</version>
538                 <scope>test</scope>
539             </dependency>
540             <!-- Netty -->
541             <dependency>
542                 <groupId>io.netty</groupId>
543                 <artifactId>netty-all</artifactId>
544                 <version>${version.netty}</version>
545             </dependency>
546             <dependency>
547                 <groupId>io.netty</groupId>
548                 <artifactId>netty-common</artifactId>
549                 <version>${version.netty}</version>
550             </dependency>
551             <dependency>
552                 <groupId>io.netty</groupId>
553                 <artifactId>netty-codec-http2</artifactId>
554                 <version>${version.netty}</version>
555             </dependency>
556             <dependency>
557                 <groupId>io.netty</groupId>
558                 <artifactId>netty-handler-proxy</artifactId>
559                 <version>${version.netty}</version>
560             </dependency>
561             <dependency>
562                 <groupId>io.netty</groupId>
563                 <artifactId>netty-buffer</artifactId>
564                 <version>${version.netty}</version>
565             </dependency>
566             <dependency>
567                 <groupId>io.netty</groupId>
568                 <artifactId>netty-codec</artifactId>
569                 <version>${version.netty}</version>
570             </dependency>
571             <dependency>
572                 <groupId>io.netty</groupId>
573                 <artifactId>netty-handler</artifactId>
574                 <version>${version.netty}</version>
575             </dependency>
576
577             <!-- Apache Commons -->
578             <dependency>
579                 <groupId>commons-cli</groupId>
580                 <artifactId>commons-cli</artifactId>
581                 <version>1.5.0</version>
582             </dependency>
583             <dependency>
584                 <groupId>commons-codec</groupId>
585                 <artifactId>commons-codec</artifactId>
586                 <version>1.16.0</version>
587             </dependency>
588             <dependency>
589                 <groupId>commons-fileupload</groupId>
590                 <artifactId>commons-fileupload</artifactId>
591                 <version>1.5</version>
592             </dependency>
593             <dependency>
594                 <groupId>org.apache.commons</groupId>
595                 <artifactId>commons-collections4</artifactId>
596                 <version>4.4</version>
597             </dependency>
598             <dependency>
599                 <groupId>commons-io</groupId>
600                 <artifactId>commons-io</artifactId>
601                 <version>2.13.0</version>
602             </dependency>
603             <dependency>
604                 <groupId>org.apache.commons</groupId>
605                 <artifactId>commons-lang3</artifactId>
606                 <version>3.14.0</version>
607             </dependency>
608             <dependency>
609                 <groupId>org.apache.commons</groupId>
610                 <artifactId>commons-math3</artifactId>
611                 <version>3.6.1</version>
612             </dependency>
613             <dependency>
614                 <groupId>org.apache.commons</groupId>
615                 <artifactId>commons-text</artifactId>
616                 <version>1.10.0</version>
617             </dependency>
618             <dependency>
619                 <groupId>commons-logging</groupId>
620                 <artifactId>commons-logging</artifactId>
621                 <version>1.2</version>
622             </dependency>
623             <dependency>
624                 <groupId>commons-net</groupId>
625                 <artifactId>commons-net</artifactId>
626                 <version>3.9.0</version>
627             </dependency>
628             <dependency>
629                 <groupId>org.apache.commons</groupId>
630                 <artifactId>commons-jexl3</artifactId>
631                 <version>3.2.1</version>
632             </dependency>
633             <!-- Github -->
634             <dependency>
635                 <groupId>com.github.docker-java</groupId>
636                 <artifactId>docker-java-core</artifactId>
637                 <version>${version.docker-java}</version>
638                 <scope>test</scope>
639             </dependency>
640             <dependency>
641                 <groupId>com.github.docker-java</groupId>
642                 <artifactId>docker-java</artifactId>
643                 <version>${version.docker-java}</version>
644                 <scope>test</scope>
645             </dependency>
646             <!--  Hibernate -->
647             <dependency>
648                 <groupId>org.hibernate.orm</groupId>
649                 <artifactId>hibernate-core</artifactId>
650                 <version>6.3.0.CR1</version>
651             </dependency>
652             <dependency>
653                 <groupId>org.hibernate</groupId>
654                 <artifactId>hibernate-core-jakarta</artifactId>
655                 <version>5.6.15.Final</version>
656             </dependency>
657
658             <!-- Spring -->
659             <dependency>
660                 <groupId>org.springframework</groupId>
661                 <artifactId>spring-core</artifactId>
662                 <version>${version.spring}</version>
663             </dependency>
664             <dependency>
665                 <groupId>org.springframework</groupId>
666                 <artifactId>spring-beans</artifactId>
667                 <version>${version.spring}</version>
668             </dependency>
669             <dependency>
670                 <groupId>org.springframework</groupId>
671                 <artifactId>spring-jcl</artifactId>
672                 <version>${version.spring}</version>
673             </dependency>
674             <dependency>
675                 <groupId>org.springframework</groupId>
676                 <artifactId>spring-web</artifactId>
677                 <version>${version.spring}</version>
678             </dependency>
679             <dependency>
680                 <groupId>org.springframework</groupId>
681                 <artifactId>spring-expression</artifactId>
682                 <version>${version.spring}</version>
683             </dependency>
684             <dependency>
685                 <groupId>org.springframework</groupId>
686                 <artifactId>spring-webmvc</artifactId>
687                 <version>${version.spring}</version>
688             </dependency>
689             <dependency>
690                 <groupId>org.springframework</groupId>
691                 <artifactId>spring-jdbc</artifactId>
692                 <version>${version.spring}</version>
693             </dependency>
694             <dependency>
695                 <groupId>org.springframework</groupId>
696                 <artifactId>spring-webflux</artifactId>
697                 <version>${version.spring}</version>
698             </dependency>
699             <dependency>
700                 <groupId>org.springframework.boot</groupId>
701                 <artifactId>spring-boot-starter-web</artifactId>
702                 <version>${version.springboot}</version>
703                 <!-- Exclude the default Jackson dependency -->
704                 <exclusions>
705                     <exclusion>
706                         <groupId>org.springframework.boot</groupId>
707                         <artifactId>spring-boot-starter-json</artifactId>
708                     </exclusion>
709                 </exclusions>
710             </dependency>
711             <dependency>
712                 <groupId>org.springframework.boot</groupId>
713                 <artifactId>spring-boot-starter-webflux</artifactId>
714                 <version>${version.springboot}</version>
715             </dependency>
716             <dependency>
717                 <groupId>org.springframework.boot</groupId>
718                 <artifactId>spring-boot-starter-tomcat</artifactId>
719                 <version>${version.springboot}</version>
720             </dependency>
721             <dependency>
722                 <groupId>org.springframework.boot</groupId>
723                 <artifactId>spring-boot-starter-security</artifactId>
724                 <version>${version.springboot}</version>
725             </dependency>
726             <dependency>
727                 <groupId>org.springframework.boot</groupId>
728                 <artifactId>spring-boot-starter-validation</artifactId>
729                 <version>${version.springboot}</version>
730             </dependency>
731             <dependency>
732                 <groupId>org.springframework.boot</groupId>
733                 <artifactId>spring-boot-starter-actuator</artifactId>
734                 <version>${version.springboot}</version>
735             </dependency>
736             <dependency>
737                 <groupId>org.springframework.boot</groupId>
738                 <artifactId>spring-boot-starter-data-jpa</artifactId>
739                 <version>${version.springboot}</version>
740             </dependency>
741             <dependency>
742                 <groupId>org.springframework.boot</groupId>
743                 <artifactId>spring-boot-autoconfigure</artifactId>
744                 <version>${version.springboot}</version>
745             </dependency>
746             <dependency>
747                 <groupId>org.springframework.boot</groupId>
748                 <artifactId>spring-boot-starter-aop</artifactId>
749                 <version>${version.springboot}</version>
750             </dependency>
751             <dependency>
752                 <groupId>org.springframework.boot</groupId>
753                 <artifactId>spring-boot-starter-test</artifactId>
754                 <version>${version.springboot}</version>
755                 <scope>test</scope>
756             </dependency>
757             <dependency>
758                 <groupId>org.apache.tomcat.embed</groupId>
759                 <artifactId>tomcat-embed-core</artifactId>
760                 <version>10.1.18</version>
761             </dependency>
762             <dependency>
763                 <groupId>org.springframework</groupId>
764                 <artifactId>spring-test</artifactId>
765                 <version>${version.spring}</version>
766                 <scope>test</scope>
767             </dependency>
768             <dependency>
769                 <groupId>io.micrometer</groupId>
770                 <artifactId>micrometer-registry-prometheus</artifactId>
771                 <version>${version.micrometer}</version>
772                 <scope>runtime</scope>
773             </dependency>
774             <dependency>
775                 <groupId>io.micrometer</groupId>
776                 <artifactId>micrometer-observation</artifactId>
777                 <version>${version.micrometer}</version>
778             </dependency>
779             <dependency>
780                 <groupId>io.micrometer</groupId>
781                 <artifactId>micrometer-core</artifactId>
782                 <version>${version.micrometer}</version>
783             </dependency>
784             <dependency>
785                 <groupId>org.bouncycastle</groupId>
786                 <artifactId>bcpkix-fips</artifactId>
787                 <version>1.0.7</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.3</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>