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