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