059c56e9454388fcb9f9df11820970be7599c06e
[policy/parent.git] / integration / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3    Copyright (C) 2018 Ericsson. All rights reserved.
4    Modifications Copyright (C) 2018-2022 AT&T. All rights reserved.
5    Modifications Copyright (C) 2019-2022 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
24 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25     <modelVersion>4.0.0</modelVersion>
26     <parent>
27         <groupId>org.onap.policy.parent</groupId>
28         <artifactId>policy-parent</artifactId>
29         <version>3.7.0-SNAPSHOT</version>
30     </parent>
31     <artifactId>integration</artifactId>
32     <packaging>pom</packaging>
33     <name>Policy Integration POM</name>
34     <description>Policy Integration POM</description>
35
36     <properties>
37         <java.version>11</java.version>
38         <!-- Note Well: For RELEASE/SNAPSHOT always set to the project version -->
39         <version.parent.resources>3.6.2-SNAPSHOT</version.parent.resources>
40         <version.logback>1.2.11</version.logback>
41         <version.dmaap>1.1.12</version.dmaap>
42         <version.powermock>2.0.9</version.powermock>
43         <version.eclipselink>2.7.8</version.eclipselink>
44         <version.drools>7.73.0.Final</version.drools>
45         <version.jersey>2.37</version.jersey>
46         <version.jackson>2.14.0-rc1</version.jackson>
47         <version.ccsdk>1.4.0</version.ccsdk>
48         <version.swagger>1.6.6</version.swagger>
49         <version.swagger.core.v3>2.2.7</version.swagger.core.v3>
50         <version.swagger.codegen.v3>3.0.36</version.swagger.codegen.v3>
51         <version.javax.bind>2.3.1</version.javax.bind>
52         <version.javax.json>1.1.4</version.javax.json>
53         <version.netty>4.1.84.Final</version.netty>
54         <version.springboot>2.5.14</version.springboot>
55         <version.hibernate.core>5.4.31.Final</version.hibernate.core>
56         <version.eelf.core>1.0.0</version.eelf.core>
57         <version.camel>3.7.3</version.camel>
58         <version.tomcat>9.0.62</version.tomcat>
59         <version.mockserver>5.13.2</version.mockserver>
60         <version.immutable>2.8.8</version.immutable>
61         <version.springfox>3.0.0</version.springfox>
62         <version.springdoc>1.6.13</version.springdoc>
63         <version.jakarta-api>2.0.2</version.jakarta-api>
64         <version.io.micrometer>1.7.3</version.io.micrometer>
65         <version.io.prometheus>0.11.0</version.io.prometheus>
66         <version.postgres>42.5.0</version.postgres>
67         <version.kafka>3.3.1</version.kafka>
68         <jacoco.dataFile>${project.basedir}/../target/code-coverage/jacoco-ut.exec</jacoco.dataFile>
69         <repo.npm>https://nexus3.onap.org/repository/npm.public/npm/-/</repo.npm>
70         <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>
71         <docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
72     </properties>
73
74     <distributionManagement>
75         <site>
76             <id>ecomp-site</id>
77             <url>dav:${onap.nexus.url}${sitePath}</url>
78         </site>
79     </distributionManagement>
80
81     <dependencyManagement>
82         <dependencies>
83             <dependency>
84                 <groupId>org.onap.policy.parent</groupId>
85                 <artifactId>policy-parent-resources</artifactId>
86                 <version>${version.parent.resources}</version>
87             </dependency>
88
89             <dependency>
90                 <groupId>jakarta.validation</groupId>
91                 <artifactId>jakarta.validation-api</artifactId>
92                 <version>${version.jakarta-api}</version>
93             </dependency>
94
95             <!-- Jackson - needed by glassfish jersey -->
96             <dependency>
97                 <groupId>com.fasterxml.jackson.core</groupId>
98                 <artifactId>jackson-core</artifactId>
99                 <version>${version.jackson}</version>
100             </dependency>
101
102             <dependency>
103                 <groupId>com.fasterxml.jackson.core</groupId>
104                 <artifactId>jackson-databind</artifactId>
105                 <version>${version.jackson}</version>
106             </dependency>
107
108             <dependency>
109                 <groupId>com.fasterxml.jackson.core</groupId>
110                 <artifactId>jackson-annotations</artifactId>
111                 <version>${version.jackson}</version>
112             </dependency>
113
114             <dependency>
115                 <groupId>com.fasterxml.jackson.module</groupId>
116                 <artifactId>jackson-module-jaxb-annotations</artifactId>
117                 <version>${version.jackson}</version>
118             </dependency>
119
120             <dependency>
121                 <groupId>com.fasterxml.jackson.module</groupId>
122                 <artifactId>jackson-module-jsonSchema</artifactId>
123                 <version>${version.jackson}</version>
124             </dependency>
125
126             <dependency>
127                 <groupId>com.fasterxml.jackson.module</groupId>
128                 <artifactId>jackson-module-parameter-names</artifactId>
129                 <version>${version.jackson}</version>
130             </dependency>
131
132             <dependency>
133                 <groupId>com.fasterxml.jackson.module</groupId>
134                 <artifactId>jackson-module-scala_2.12</artifactId>
135                 <version>${version.jackson}</version>
136             </dependency>
137
138             <dependency>
139                 <groupId>com.fasterxml.jackson.dataformat</groupId>
140                 <artifactId>jackson-dataformat-yaml</artifactId>
141                 <version>${version.jackson}</version>
142             </dependency>
143
144             <dependency>
145                 <groupId>com.fasterxml.jackson.dataformat</groupId>
146                 <artifactId>jackson-dataformat-xml</artifactId>
147                 <version>${version.jackson}</version>
148             </dependency>
149
150             <dependency>
151                 <groupId>com.fasterxml.jackson.dataformat</groupId>
152                 <artifactId>jackson-dataformat-csv</artifactId>
153                 <version>${version.jackson}</version>
154             </dependency>
155
156             <dependency>
157                 <groupId>com.fasterxml.jackson.datatype</groupId>
158                 <artifactId>jackson-datatype-jdk8</artifactId>
159                 <version>${version.jackson}</version>
160             </dependency>
161
162             <dependency>
163                 <groupId>com.fasterxml.jackson.datatype</groupId>
164                 <artifactId>jackson-datatype-jsr310</artifactId>
165                 <version>${version.jackson}</version>
166             </dependency>
167
168             <dependency>
169                 <groupId>com.fasterxml.jackson.datatype</groupId>
170                 <artifactId>jackson-datatype-joda</artifactId>
171                 <version>${version.jackson}</version>
172             </dependency>
173
174             <dependency>
175                 <groupId>com.fasterxml.jackson.jaxrs</groupId>
176                 <artifactId>jackson-jaxrs-base</artifactId>
177                 <version>${version.jackson}</version>
178             </dependency>
179
180             <dependency>
181                 <groupId>com.fasterxml.jackson.jaxrs</groupId>
182                 <artifactId>jackson-jaxrs-json-provider</artifactId>
183                 <version>${version.jackson}</version>
184             </dependency>
185
186             <!-- Jersey -->
187             <dependency>
188                 <groupId>org.glassfish.jersey.core</groupId>
189                 <artifactId>jersey-server</artifactId>
190                 <version>${version.jersey}</version>
191                 <exclusions>
192                     <exclusion>
193                         <groupId>org.glassfish.jersey.media</groupId>
194                         <artifactId>jersey-media-jaxb</artifactId>
195                     </exclusion>
196                 </exclusions>
197             </dependency>
198
199             <dependency>
200                 <groupId>org.glassfish.jersey.containers</groupId>
201                 <artifactId>jersey-container-servlet-core</artifactId>
202                 <version>${version.jersey}</version>
203             </dependency>
204
205             <dependency>
206                 <groupId>org.glassfish.jersey.containers</groupId>
207                 <artifactId>jersey-container-jetty-http</artifactId>
208                 <version>${version.jersey}</version>
209                 <exclusions>
210                     <exclusion>
211                         <groupId>org.eclipse.jetty</groupId>
212                         <artifactId>jetty-util</artifactId>
213                     </exclusion>
214                 </exclusions>
215             </dependency>
216
217             <dependency>
218                 <groupId>org.glassfish.jersey.core</groupId>
219                 <artifactId>jersey-client</artifactId>
220                 <version>${version.jersey}</version>
221             </dependency>
222
223             <dependency>
224                 <groupId>org.glassfish.jersey.core</groupId>
225                 <artifactId>jersey-common</artifactId>
226                 <version>${version.jersey}</version>
227             </dependency>
228
229             <dependency>
230                 <groupId>org.glassfish.jersey.inject</groupId>
231                 <artifactId>jersey-hk2</artifactId>
232                 <version>${version.jersey}</version>
233             </dependency>
234
235             <dependency>
236                 <groupId>org.glassfish.jersey.containers</groupId>
237                 <artifactId>jersey-container-grizzly2-http</artifactId>
238                 <version>${version.jersey}</version>
239             </dependency>
240
241             <dependency>
242                 <groupId>org.glassfish.jersey.media</groupId>
243                 <artifactId>jersey-media-moxy</artifactId>
244                 <version>${version.jersey}</version>
245             </dependency>
246
247             <dependency>
248                 <groupId>org.glassfish.jersey.media</groupId>
249                 <artifactId>jersey-media-json-jackson</artifactId>
250                 <version>${version.jersey}</version>
251             </dependency>
252
253             <dependency>
254                 <groupId>org.glassfish.jersey.test-framework</groupId>
255                 <artifactId>jersey-test-framework-core</artifactId>
256                 <version>${version.jersey}</version>
257             </dependency>
258
259             <dependency>
260                 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
261                 <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
262                 <version>${version.jersey}</version>
263             </dependency>
264
265             <dependency>
266                 <groupId>org.glassfish.jersey.media</groupId>
267                 <artifactId>jersey-media-multipart</artifactId>
268                 <version>${version.jersey}</version>
269             </dependency>
270
271             <!-- RE2J in lieu of java.util Pattern -->
272             <dependency>
273                 <groupId>com.google.re2j</groupId>
274                 <artifactId>re2j</artifactId>
275                 <version>1.5</version>
276             </dependency>
277
278             <!-- MariaDB -->
279             <dependency>
280                 <groupId>org.mariadb.jdbc</groupId>
281                 <artifactId>mariadb-java-client</artifactId>
282                 <version>3.1.0</version>
283             </dependency>
284
285             <!-- Postgres -->
286             <dependency>
287                 <groupId>org.postgresql</groupId>
288                 <artifactId>postgresql</artifactId>
289                 <version>${version.postgres}</version>
290             </dependency>
291
292             <!-- Kafka -->
293             <dependency>
294                 <groupId>org.apache.kafka</groupId>
295                 <artifactId>kafka-clients</artifactId>
296                 <version>${version.kafka}</version>
297                 <exclusions>
298                     <!-- The default Zookeeper version in Kafka has vulnerabilities -->
299                     <exclusion>
300                         <groupId>org.apache.zookeeper</groupId>
301                         <artifactId>zookeeper</artifactId>
302                     </exclusion>
303                 </exclusions>
304             </dependency>
305
306             <!-- Prometheus Client Libraries -->
307             <dependency>
308                 <groupId>io.prometheus</groupId>
309                 <artifactId>simpleclient</artifactId>
310                 <version>${version.io.prometheus}</version>
311             </dependency>
312             <dependency>
313                 <groupId>io.prometheus</groupId>
314                 <artifactId>simpleclient_hotspot</artifactId>
315                 <version>${version.io.prometheus}</version>
316             </dependency>
317             <dependency>
318                 <groupId>io.prometheus</groupId>
319                 <artifactId>simpleclient_servlet</artifactId>
320                 <version>${version.io.prometheus}</version>
321             </dependency>
322             <dependency>
323                 <groupId>io.prometheus</groupId>
324                 <artifactId>simpleclient_logback</artifactId>
325                 <version>${version.io.prometheus}</version>
326             </dependency>
327
328             <!-- Swagger Jersey2 JAXRS -->
329             <dependency>
330                 <groupId>io.swagger</groupId>
331                 <artifactId>swagger-jersey2-jaxrs</artifactId>
332                 <version>${version.swagger}</version>
333                 <exclusions>
334                     <exclusion>
335                         <groupId>org.glassfish.jersey.containers</groupId>
336                         <artifactId>jersey-container-servlet-core</artifactId>
337                     </exclusion>
338                     <exclusion>
339                         <groupId>javax.validation</groupId>
340                         <artifactId>validation-api</artifactId>
341                     </exclusion>
342                 </exclusions>
343             </dependency>
344
345             <!--  Swagger Models -->
346             <dependency>
347                 <groupId>io.swagger</groupId>
348                 <artifactId>swagger-models</artifactId>
349                 <version>${version.swagger}</version>
350             </dependency>
351             <dependency>
352                 <groupId>io.swagger.core.v3</groupId>
353                 <artifactId>swagger-models</artifactId>
354                 <version>${version.swagger.core.v3}</version>
355             </dependency>
356
357             <!-- Encoder and decoders for various formats -->
358             <dependency>
359                 <groupId>commons-codec</groupId>
360                 <artifactId>commons-codec</artifactId>
361                 <version>1.15</version>
362             </dependency>
363
364             <dependency>
365                 <groupId>com.thoughtworks.xstream</groupId>
366                 <artifactId>xstream</artifactId>
367                 <version>1.4.17</version>
368             </dependency>
369
370             <!-- Eclipse JPA API -->
371             <dependency>
372                 <groupId>org.eclipse.persistence</groupId>
373                 <artifactId>org.eclipse.persistence.jpa</artifactId>
374                 <version>${version.eclipselink}</version>
375             </dependency>
376
377             <!-- EclipseLink API -->
378             <dependency>
379                 <groupId>org.eclipse.persistence</groupId>
380                 <artifactId>eclipselink</artifactId>
381                 <version>${version.eclipselink}</version>
382             </dependency>
383
384             <!-- Java Servlet API -->
385             <dependency>
386                 <groupId>javax.servlet</groupId>
387                 <artifactId>javax.servlet-api</artifactId>
388                 <version>4.0.1</version>
389             </dependency>
390
391             <!-- HttpComponents Core (blocking I/O) -->
392             <dependency>
393                 <groupId>org.apache.httpcomponents</groupId>
394                 <artifactId>httpcore</artifactId>
395                 <version>4.4.14</version>
396             </dependency>
397
398             <!-- JSON marshalling and unmarshalling -->
399             <dependency>
400                 <groupId>com.google.code.gson</groupId>
401                 <artifactId>gson</artifactId>
402                 <version>2.9.0</version>
403             </dependency>
404             <dependency>
405                 <groupId>org.json</groupId>
406                 <artifactId>json</artifactId>
407                 <version>20201115</version>
408             </dependency>
409             <dependency>
410                 <groupId>com.worldturner.medeia</groupId>
411                 <artifactId>medeia-validator-gson</artifactId>
412                 <version>1.1.1</version>
413             </dependency>
414
415             <!-- Lombok -->
416             <dependency>
417                 <groupId>org.projectlombok</groupId>
418                 <artifactId>lombok</artifactId>
419                 <version>1.18.16</version>
420             </dependency>
421
422             <!-- Logging -->
423             <dependency>
424                 <groupId>org.slf4j</groupId>
425                 <artifactId>slf4j-api</artifactId>
426                 <version>1.7.30</version>
427             </dependency>
428             <dependency>
429                 <groupId>org.slf4j</groupId>
430                 <artifactId>slf4j-ext</artifactId>
431                 <version>1.7.30</version>
432             </dependency>
433             <dependency>
434                 <groupId>ch.qos.logback</groupId>
435                 <artifactId>logback-core</artifactId>
436                 <version>${version.logback}</version>
437             </dependency>
438             <dependency>
439                 <groupId>ch.qos.logback</groupId>
440                 <artifactId>logback-classic</artifactId>
441                 <version>${version.logback}</version>
442             </dependency>
443
444             <!-- Dmaap Client -->
445             <dependency>
446                 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
447                 <artifactId>dmaapClient</artifactId>
448                 <version>${version.dmaap}</version>
449                 <exclusions>
450                     <exclusion>
451                         <groupId>org.slf4j</groupId>
452                         <artifactId>slf4j-log4j12</artifactId>
453                     </exclusion>
454                     <exclusion>
455                         <groupId>log4j</groupId>
456                         <artifactId>log4j</artifactId>
457                     </exclusion>
458                     <exclusion>
459                         <artifactId>apache-log4j-extras</artifactId>
460                         <groupId>log4j</groupId>
461                     </exclusion>
462                 </exclusions>
463             </dependency>
464
465             <!-- CDS dependencies -->
466             <dependency>
467                 <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
468                 <artifactId>blueprint-proto</artifactId>
469                 <version>${version.ccsdk}</version>
470                 <exclusions>
471                     <exclusion>
472                         <groupId>io.springfox</groupId>
473                         <artifactId>springfox-boot-starter</artifactId>
474                     </exclusion>
475                     <exclusion>
476                         <groupId>org.apache.logging.log4j</groupId>
477                         <artifactId>log4j-api</artifactId>
478                     </exclusion>
479                     <exclusion>
480                         <groupId>org.apache.logging.log4j</groupId>
481                         <artifactId>log4j-to-slf4j</artifactId>
482                     </exclusion>
483                 </exclusions>
484             </dependency>
485             <dependency>
486                 <groupId>net.minidev</groupId>
487                 <artifactId>json-smart</artifactId>
488                 <version>2.4.7</version>
489             </dependency>
490             <dependency>
491                 <groupId>org.apache.logging.log4j</groupId>
492                 <artifactId>log4j-api</artifactId>
493                 <version>2.17.1</version>
494             </dependency>
495             <dependency>
496                 <groupId>org.apache.logging.log4j</groupId>
497                 <artifactId>log4j-to-slf4j</artifactId>
498                 <version>2.17.1</version>
499             </dependency>
500
501             <!-- AAF Client -->
502             <dependency>
503                 <groupId>org.onap.aaf.authz</groupId>
504                 <artifactId>aaf-cadi-aaf</artifactId>
505                 <version>2.1.21</version>
506                 <exclusions>
507                     <exclusion>
508                         <groupId>log4j</groupId>
509                         <artifactId>log4j</artifactId>
510                     </exclusion>
511                 </exclusions>
512             </dependency>
513
514             <!-- Client library for Cambria event routing API -->
515             <dependency>
516                 <groupId>com.att.nsa</groupId>
517                 <artifactId>cambriaClient</artifactId>
518                 <version>1.2.1-oss</version>
519             </dependency>
520             <dependency>
521                 <groupId>com.att.nsa</groupId>
522                 <artifactId>saClientLibrary</artifactId>
523                 <version>1.3.0-oss</version>
524             </dependency>
525
526             <!-- Commons CLI for command line parsing -->
527             <dependency>
528                 <groupId>commons-cli</groupId>
529                 <artifactId>commons-cli</artifactId>
530                 <version>1.4</version>
531             </dependency>
532
533             <!-- Web Sockets -->
534             <dependency>
535                 <groupId>org.java-websocket</groupId>
536                 <artifactId>Java-WebSocket</artifactId>
537                 <version>1.5.1</version>
538             </dependency>
539
540             <!-- SnakeYAML -->
541             <dependency>
542                 <groupId>org.yaml</groupId>
543                 <artifactId>snakeyaml</artifactId>
544                 <version>1.33</version>
545             </dependency>
546
547             <!-- Drools -->
548
549             <!--
550             Security Issues: 1 of 2
551             This dependency is trying to upgrade security fixes
552             identified. If it is removed or manipulated then please
553             fix the 2nd change as noted below.
554             -->
555
556             <dependency>
557                 <groupId>org.codehaus.plexus</groupId>
558                 <artifactId>plexus-utils</artifactId>
559                 <version>3.3.0</version>
560             </dependency>
561
562             <dependency>
563                 <groupId>org.kie</groupId>
564                 <artifactId>kie-api</artifactId>
565                 <version>${version.drools}</version>
566             </dependency>
567
568             <dependency>
569                 <groupId>org.kie</groupId>
570                 <artifactId>kie-ci</artifactId>
571                 <version>${version.drools}</version>
572
573                 <!--
574                 Issue: 2 of 2
575                 Excluding these 2 dependencies in order to force upgrade security fixes
576                 identified. As declared above. Any changes here should be reflected above
577                 and vice versa.
578                 -->
579
580                 <exclusions>
581                     <exclusion>
582                         <groupId>org.codehaus.plexus</groupId>
583                         <artifactId>plexus-utils</artifactId>
584                     </exclusion>
585                 </exclusions>
586             </dependency>
587
588             <dependency>
589                 <groupId>org.drools</groupId>
590                 <artifactId>drools-core</artifactId>
591                 <version>${version.drools}</version>
592             </dependency>
593
594             <dependency>
595                 <groupId>org.drools</groupId>
596                 <artifactId>drools-persistence-jpa</artifactId>
597                 <version>${version.drools}</version>
598             </dependency>
599
600             <dependency>
601                 <groupId>org.drools</groupId>
602                 <artifactId>drools-compiler</artifactId>
603                 <version>${version.drools}</version>
604             </dependency>
605
606             <dependency>
607                 <groupId>org.drools</groupId>
608                 <artifactId>drools-verifier-drl</artifactId>
609                 <version>${version.drools}</version>
610             </dependency>
611
612             <dependency>
613                 <groupId>org.drools</groupId>
614                 <artifactId>drools-verifier-api</artifactId>
615                 <version>${version.drools}</version>
616             </dependency>
617
618             <dependency>
619                 <groupId>org.drools</groupId>
620                 <artifactId>drools-verifier-core</artifactId>
621                 <version>${version.drools}</version>
622             </dependency>
623
624             <dependency>
625                 <groupId>org.dom4j</groupId>
626                 <artifactId>dom4j</artifactId>
627                 <version>2.1.3</version>
628             </dependency>
629
630             <!-- Mockserver -->
631             <dependency>
632                 <groupId>org.mock-server</groupId>
633                 <artifactId>mockserver-netty</artifactId>
634                 <version>${version.mockserver}</version>
635                 <scope>test</scope>
636             </dependency>
637
638             <dependency>
639                 <groupId>org.mock-server</groupId>
640                 <artifactId>mockserver-client-java</artifactId>
641                 <version>${version.mockserver}</version>
642                 <scope>test</scope>
643             </dependency>
644
645             <!-- Immutables -->
646             <dependency>
647                 <groupId>org.immutables</groupId>
648                 <artifactId>value</artifactId>
649                 <version>${version.immutable}</version>
650                 <scope>provided</scope>
651             </dependency>
652
653             <dependency>
654                 <groupId>org.immutables</groupId>
655                 <artifactId>gson</artifactId>
656                 <version>${version.immutable}</version>
657             </dependency>
658
659             <!-- Springfox -->
660             <dependency>
661                 <groupId>io.springfox</groupId>
662                 <artifactId>springfox-swagger2</artifactId>
663                 <version>${version.springfox}</version>
664             </dependency>
665
666             <dependency>
667                 <groupId>io.springfox</groupId>
668                 <artifactId>springfox-swagger-ui</artifactId>
669                 <version>${version.springfox}</version>
670                 <scope>runtime</scope>
671             </dependency>
672
673             <!-- Springdoc -->
674             <dependency>
675                 <groupId>org.springdoc</groupId>
676                 <artifactId>springdoc-openapi-ui</artifactId>
677                 <version>${version.springdoc}</version>
678             </dependency>
679
680             <!-- File upload -->
681             <dependency>
682                 <groupId>commons-fileupload</groupId>
683                 <artifactId>commons-fileupload</artifactId>
684                 <version>1.4</version>
685             </dependency>
686
687             <!-- Janino -->
688             <dependency>
689                 <groupId>org.codehaus.janino</groupId>
690                 <artifactId>janino</artifactId>
691                 <version>3.0.8</version>
692             </dependency>
693
694             <!-- jaxws -->
695             <dependency>
696                 <groupId>javax.xml.ws</groupId>
697                 <artifactId>jaxws-api</artifactId>
698                 <version>2.3.1</version>
699             </dependency>
700
701             <dependency>
702                 <groupId>org.onap.sdc.sdc-distribution-client</groupId>
703                 <artifactId>sdc-distribution-client</artifactId>
704                 <version>2.0.0</version>
705             </dependency>
706
707             <dependency>
708                 <groupId>org.onap.sdc.sdc-tosca</groupId>
709                 <artifactId>sdc-tosca</artifactId>
710                 <version>1.5.1</version>
711             </dependency>
712
713             <dependency>
714                 <groupId>org.jboss.spec.javax.ws.rs</groupId>
715                 <artifactId>jboss-jaxrs-api_2.0_spec</artifactId>
716                 <version>1.0.1.Final</version>
717             </dependency>
718
719             <!-- transaction api -->
720             <dependency>
721                 <groupId>javax.transaction</groupId>
722                 <artifactId>jta</artifactId>
723                 <version>1.1</version>
724             </dependency>
725
726             <!-- Dependencies dragged in by CDS -->
727             <dependency>
728                 <groupId>com.google.protobuf</groupId>
729                 <artifactId>protobuf-java</artifactId>
730                 <version>3.21.7</version>
731             </dependency>
732
733             <dependency>
734                 <groupId>org.jetbrains.kotlin</groupId>
735                 <artifactId>kotlin-daemon-client</artifactId>
736                 <version>1.7.20</version>
737             </dependency>
738
739             <dependency>
740                 <groupId>org.jetbrains.kotlin</groupId>
741                 <artifactId>kotlin-scripting-jvm</artifactId>
742                 <version>1.7.20</version>
743             </dependency>
744
745             <!-- Test dependencies -->
746
747             <!-- In memory Database Engine -->
748             <dependency>
749                 <groupId>com.h2database</groupId>
750                 <artifactId>h2</artifactId>
751                 <version>1.4.200</version>
752                 <scope>test</scope>
753             </dependency>
754
755             <!-- JUNIT -->
756             <dependency>
757                 <groupId>junit</groupId>
758                 <artifactId>junit</artifactId>
759                 <version>4.13.1</version>
760                 <scope>test</scope>
761             </dependency>
762
763             <!-- Junit vintage -->
764             <dependency>
765                 <groupId>org.junit.vintage</groupId>
766                 <artifactId>junit-vintage-engine</artifactId>
767                 <version>5.7.1</version>
768                 <scope>test</scope>
769             </dependency>
770
771             <!-- Cucumber Tests -->
772             <dependency>
773                 <groupId>io.cucumber</groupId>
774                 <artifactId>cucumber-java</artifactId>
775                 <version>6.9.1</version>
776                 <scope>test</scope>
777             </dependency>
778             <dependency>
779                 <groupId>io.cucumber</groupId>
780                 <artifactId>cucumber-junit</artifactId>
781                 <version>6.9.1</version>
782                 <scope>test</scope>
783             </dependency>
784
785             <!-- Exception testing -->
786             <dependency>
787                 <groupId>org.assertj</groupId>
788                 <artifactId>assertj-core</artifactId>
789                 <version>3.18.1</version>
790                 <scope>test</scope>
791             </dependency>
792
793             <!-- Mock libraries -->
794             <dependency>
795                 <groupId>com.openpojo</groupId>
796                 <artifactId>openpojo</artifactId>
797                 <version>0.8.13</version>
798                 <scope>test</scope>
799             </dependency>
800             <dependency>
801                 <groupId>org.mockito</groupId>
802                 <artifactId>mockito-all</artifactId>
803                 <version>1.10.19</version>
804                 <scope>test</scope>
805             </dependency>
806             <dependency>
807                 <groupId>org.powermock</groupId>
808                 <artifactId>powermock-core</artifactId>
809                 <version>${version.powermock}</version>
810                 <scope>test</scope>
811             </dependency>
812             <dependency>
813                 <groupId>org.powermock</groupId>
814                 <artifactId>powermock-api-mockito2</artifactId>
815                 <version>${version.powermock}</version>
816                 <scope>test</scope>
817             </dependency>
818             <dependency>
819                 <groupId>org.powermock</groupId>
820                 <artifactId>powermock-module-junit4</artifactId>
821                 <version>${version.powermock}</version>
822                 <scope>test</scope>
823             </dependency>
824             <dependency>
825                 <groupId>org.mockito</groupId>
826                 <artifactId>mockito-core</artifactId>
827                 <version>3.7.7</version>
828                 <scope>test</scope>
829             </dependency>
830
831             <!-- Awaitility -->
832             <dependency>
833                 <groupId>org.awaitility</groupId>
834                 <artifactId>awaitility</artifactId>
835                 <version>4.0.3</version>
836                 <scope>test</scope>
837             </dependency>
838
839             <!-- Netty -->
840             <dependency>
841                 <groupId>io.netty</groupId>
842                 <artifactId>netty-all</artifactId>
843                 <version>${version.netty}</version>
844             </dependency>
845             <dependency>
846                 <groupId>io.netty</groupId>
847                 <artifactId>netty-common</artifactId>
848                 <version>${version.netty}</version>
849             </dependency>
850             <dependency>
851                 <groupId>io.netty</groupId>
852                 <artifactId>netty-codec-http2</artifactId>
853                 <version>${version.netty}</version>
854             </dependency>
855             <dependency>
856                 <groupId>io.netty</groupId>
857                 <artifactId>netty-handler-proxy</artifactId>
858                 <version>${version.netty}</version>
859             </dependency>
860
861             <!-- Apache Commons -->
862             <dependency>
863                 <groupId>org.apache.commons</groupId>
864                 <artifactId>commons-lang3</artifactId>
865                 <version>3.12.0</version>
866             </dependency>
867
868             <dependency>
869                 <groupId>commons-io</groupId>
870                 <artifactId>commons-io</artifactId>
871                 <version>2.8.0</version>
872             </dependency>
873
874             <dependency>
875                 <groupId>org.apache.commons</groupId>
876                 <artifactId>commons-text</artifactId>
877                 <version>1.10.0</version>
878             </dependency>
879
880             <!-- Google Code -->
881             <dependency>
882                 <groupId>com.googlecode.json-simple</groupId>
883                 <artifactId>json-simple</artifactId>
884                 <version>1.1.1</version>
885             </dependency>
886
887             <!-- Github -->
888             <dependency>
889                 <groupId>com.github.docker-java</groupId>
890                 <artifactId>docker-java-core</artifactId>
891                 <version>3.2.7</version>
892                 <scope>test</scope>
893             </dependency>
894
895             <dependency>
896                 <groupId>com.github.docker-java</groupId>
897                 <artifactId>docker-java</artifactId>
898                 <version>3.2.7</version>
899                 <scope>test</scope>
900             </dependency>
901
902             <!--  Springboot -->
903             <dependency>
904                 <groupId>org.springframework.boot</groupId>
905                 <artifactId>spring-boot-starter-web</artifactId>
906                 <version>${version.springboot}</version>
907             </dependency>
908             <dependency>
909                 <groupId>org.springframework.boot</groupId>
910                 <artifactId>spring-boot-starter-webflux</artifactId>
911                 <version>${version.springboot}</version>
912             </dependency>
913             <dependency>
914                 <groupId>org.springframework.boot</groupId>
915                 <artifactId>spring-boot-starter-validation</artifactId>
916                 <version>${version.springboot}</version>
917             </dependency>
918             <dependency>
919                 <groupId>org.springframework.boot</groupId>
920                 <artifactId>spring-boot-starter-aop</artifactId>
921                 <version>${version.springboot}</version>
922             </dependency>
923             <dependency>
924                 <groupId>org.springframework.boot</groupId>
925                 <artifactId>spring-boot-starter-test</artifactId>
926                 <version>${version.springboot}</version>
927                 <scope>test</scope>
928             </dependency>
929             <dependency>
930                 <groupId>org.springframework.boot</groupId>
931                 <artifactId>spring-boot-starter-security</artifactId>
932                 <version>${version.springboot}</version>
933             </dependency>
934             <dependency>
935                 <groupId>org.springframework.boot</groupId>
936                 <artifactId>spring-boot-starter-data-jpa</artifactId>
937                 <version>${version.springboot}</version>
938             </dependency>
939             <dependency>
940                 <groupId>org.springframework.boot</groupId>
941                 <artifactId>spring-boot-starter-tomcat</artifactId>
942                 <version>${version.springboot}</version>
943             </dependency>
944             <dependency>
945                 <groupId>org.springframework.boot</groupId>
946                 <artifactId>spring-boot-starter-actuator</artifactId>
947                 <version>${version.springboot}</version>
948             </dependency>
949             <dependency>
950                 <groupId>org.springframework.boot</groupId>
951                 <artifactId>spring-boot-autoconfigure</artifactId>
952                 <version>${version.springboot}</version>
953             </dependency>
954
955             <!--  Hibernate -->
956             <dependency>
957                 <groupId>org.hibernate</groupId>
958                 <artifactId>hibernate-core</artifactId>
959                 <version>${version.hibernate.core}</version>
960             </dependency>
961
962             <!-- Github -->
963             <dependency>
964                 <groupId>io.github.classgraph</groupId>
965                 <artifactId>classgraph</artifactId>
966                 <version>4.8.146</version>
967             </dependency>
968
969             <!-- Tomcat -->
970             <dependency>
971                 <groupId>org.apache.tomcat</groupId>
972                 <artifactId>tomcat-annotations-api</artifactId>
973                 <version>${version.tomcat}</version>
974             </dependency>
975             <dependency>
976                 <groupId>org.apache.tomcat.embed</groupId>
977                 <artifactId>tomcat-embed-core</artifactId>
978                 <version>${version.tomcat}</version>
979             </dependency>
980             <dependency>
981                 <groupId>org.apache.tomcat.embed</groupId>
982                 <artifactId>tomcat-embed-el</artifactId>
983                 <version>${version.tomcat}</version>
984             </dependency>
985             <dependency>
986                 <groupId>org.apache.tomcat.embed</groupId>
987                 <artifactId>tomcat-embed-websocket</artifactId>
988                 <version>${version.tomcat}</version>
989             </dependency>
990
991         </dependencies>
992
993     </dependencyManagement>
994
995     <scm>
996         <connection>scm:git:ssh://git.onap.org:29418/${project.groupId}</connection>
997         <developerConnection>scm:git:ssh://git.onap.org:29418/${project.groupId}</developerConnection>
998         <tag>HEAD</tag>
999         <url>https://wiki.onap.org/display/DW/Integration+Project</url>
1000     </scm>
1001
1002     <profiles>
1003         <profile>
1004             <id>m2e</id>
1005             <!-- This profile is only active when the property "m2e.version" is set,
1006                 which is the case when building in Eclipse with m2e. -->
1007             <activation>
1008                 <property>
1009                     <name>m2e.version</name>
1010                 </property>
1011             </activation>
1012             <build>
1013                 <pluginManagement>
1014                     <plugins>
1015                         <plugin>
1016                             <groupId>org.eclipse.m2e</groupId>
1017                             <artifactId>lifecycle-mapping</artifactId>
1018                             <version>1.0.0</version>
1019                             <configuration>
1020                                 <lifecycleMappingMetadata>
1021                                     <pluginExecutions>
1022                                         <pluginExecution>
1023                                             <pluginExecutionFilter>
1024                                                 <groupId>org.apache.maven.plugins</groupId>
1025                                                 <artifactId>maven-checkstyle-plugin</artifactId>
1026                                                 <versionRange>2.17,)</versionRange>
1027                                                 <goals>
1028                                                     <goal>check</goal>
1029                                                 </goals>
1030                                             </pluginExecutionFilter>
1031                                             <action>
1032                                                 <ignore />
1033                                             </action>
1034                                         </pluginExecution>
1035                                         <pluginExecution>
1036                                             <pluginExecutionFilter>
1037                                                 <groupId>org.apache.maven.plugins</groupId>
1038                                                 <artifactId>maven-remote-resources-plugin</artifactId>
1039                                                 <versionRange>3.0.0,)</versionRange>
1040                                                 <goals>
1041                                                     <goal>bundle</goal>
1042                                                     <goal>process</goal>
1043                                                 </goals>
1044                                             </pluginExecutionFilter>
1045                                             <action>
1046                                                 <ignore />
1047                                             </action>
1048                                         </pluginExecution>
1049                                         <pluginExecution>
1050                                             <pluginExecutionFilter>
1051                                                 <groupId>org.jacoco</groupId>
1052                                                 <artifactId>jacoco-maven-plugin</artifactId>
1053                                                 <versionRange>[0.7.1.201405082137,)</versionRange>
1054                                                 <goals>
1055                                                     <goal>prepare-agent</goal>
1056                                                 </goals>
1057                                             </pluginExecutionFilter>
1058                                             <action>
1059                                                 <ignore />
1060                                             </action>
1061                                         </pluginExecution>
1062                                         <pluginExecution>
1063                                             <pluginExecutionFilter>
1064                                                 <groupId>de.jpdigital</groupId>
1065                                                 <artifactId>hibernate52-ddl-maven-plugin</artifactId>
1066                                                 <versionRange>[2.2.0,)</versionRange>
1067                                                 <goals>
1068                                                     <goal>gen-ddl</goal>
1069                                                 </goals>
1070                                             </pluginExecutionFilter>
1071                                             <action>
1072                                                 <ignore />
1073                                             </action>
1074                                         </pluginExecution>
1075                                         <pluginExecution>
1076                                             <pluginExecutionFilter>
1077                                                 <groupId>org.codehaus.groovy.maven</groupId>
1078                                                 <artifactId>gmaven-plugin</artifactId>
1079                                                 <versionRange>[1.0,)</versionRange>
1080                                                 <goals>
1081                                                     <goal>execute</goal>
1082                                                 </goals>
1083                                             </pluginExecutionFilter>
1084                                             <action>
1085                                                 <ignore />
1086                                             </action>
1087                                         </pluginExecution>
1088                                         <pluginExecution>
1089                                             <pluginExecutionFilter>
1090                                                 <groupId>org.codehaus.mojo</groupId>
1091                                                 <artifactId>exec-maven-plugin</artifactId>
1092                                                 <versionRange>[3.0.0,)</versionRange>
1093                                                 <goals>
1094                                                     <goal>exec</goal>
1095                                                 </goals>
1096                                             </pluginExecutionFilter>
1097                                             <action>
1098                                                 <ignore />
1099                                             </action>
1100                                         </pluginExecution>
1101                                         <pluginExecution>
1102                                             <pluginExecutionFilter>
1103                                                 <groupId>org.codehaus.mojo</groupId>
1104                                                 <artifactId>keytool-maven-plugin</artifactId>
1105                                                 <versionRange>[1.5.0,)</versionRange>
1106                                                 <goals>
1107                                                     <goal>generateKeyPair</goal>
1108                                                 </goals>
1109                                             </pluginExecutionFilter>
1110                                             <action>
1111                                                 <ignore />
1112                                             </action>
1113                                         </pluginExecution>
1114                                         <pluginExecution>
1115                                             <pluginExecutionFilter>
1116                                                 <groupId>com.github.eirslett</groupId>
1117                                                 <artifactId>frontend-maven-plugin</artifactId>
1118                                                 <versionRange>[1.11.0,)</versionRange>
1119                                                 <goals>
1120                                                     <goal>npm</goal>
1121                                                 </goals>
1122                                             </pluginExecutionFilter>
1123                                             <action>
1124                                                 <ignore />
1125                                             </action>
1126                                         </pluginExecution>
1127                                         <pluginExecution>
1128                                             <pluginExecutionFilter>
1129                                                 <groupId>io.swagger.codegen.v3</groupId>
1130                                                 <artifactId>swagger-codegen-maven-plugin</artifactId>
1131                                                 <versionRange>[3.0.0,)</versionRange>
1132                                                 <goals>
1133                                                     <goal>generate</goal>
1134                                                 </goals>
1135                                             </pluginExecutionFilter>
1136                                             <action>
1137                                                 <ignore />
1138                                             </action>
1139                                         </pluginExecution>
1140                                     </pluginExecutions>
1141                                 </lifecycleMappingMetadata>
1142                             </configuration>
1143                         </plugin>
1144                     </plugins>
1145                 </pluginManagement>
1146             </build>
1147         </profile>
1148     </profiles>
1149
1150     <build>
1151         <extensions>
1152             <extension>
1153                 <groupId>org.apache.maven.archetype</groupId>
1154                 <artifactId>archetype-packaging</artifactId>
1155                 <version>3.2.0</version>
1156             </extension>
1157         </extensions>
1158         <pluginManagement>
1159             <plugins>
1160                 <plugin>
1161                     <groupId>org.codehaus.mojo</groupId>
1162                     <artifactId>versions-maven-plugin</artifactId>
1163                     <version>2.8.1</version>
1164                 </plugin>
1165                 <plugin>
1166                     <groupId>org.apache.maven.plugins</groupId>
1167                     <artifactId>maven-dependency-plugin</artifactId>
1168                     <version>3.1.2</version>
1169                 </plugin>
1170                 <plugin>
1171                     <!-- THIS PLUGIN IS RETIRED -->
1172                     <groupId>org.apache.maven.plugins</groupId>
1173                     <artifactId>maven-reactor-plugin</artifactId>
1174                     <version>1.1</version>
1175                 </plugin>
1176                 <plugin>
1177                     <!-- THIS PLUGIN IS RETIRED -->
1178                     <!-- Advise to use m2e -->
1179                     <groupId>org.apache.maven.plugins</groupId>
1180                     <artifactId>maven-eclipse-plugin</artifactId>
1181                     <version>2.10</version>
1182                 </plugin>
1183                 <plugin>
1184                     <groupId>org.apache.maven.plugins</groupId>
1185                     <artifactId>maven-install-plugin</artifactId>
1186                     <version>3.0.0-M1</version>
1187                 </plugin>
1188                 <plugin>
1189                     <groupId>org.apache.maven.plugins</groupId>
1190                     <artifactId>maven-resources-plugin</artifactId>
1191                     <version>3.2.0</version>
1192                 </plugin>
1193                 <plugin>
1194                     <groupId>org.apache.maven.plugins</groupId>
1195                     <artifactId>maven-source-plugin</artifactId>
1196                     <version>3.2.1</version>
1197                 </plugin>
1198                 <plugin>
1199                     <groupId>org.apache.maven.plugins</groupId>
1200                     <artifactId>maven-release-plugin</artifactId>
1201                     <version>3.0.0-M1</version>
1202                 </plugin>
1203                 <plugin>
1204                     <groupId>org.apache.maven.plugins</groupId>
1205                     <artifactId>maven-assembly-plugin</artifactId>
1206                     <version>3.3.0</version>
1207                 </plugin>
1208                 <plugin>
1209                     <groupId>org.apache.maven.plugins</groupId>
1210                     <artifactId>maven-jar-plugin</artifactId>
1211                     <version>3.2.0</version>
1212                 </plugin>
1213                 <plugin>
1214                     <groupId>org.apache.maven.plugins</groupId>
1215                     <artifactId>maven-javadoc-plugin</artifactId>
1216                     <version>3.2.0</version>
1217                 </plugin>
1218                 <plugin>
1219                     <groupId>org.apache.maven.plugins</groupId>
1220                     <artifactId>maven-shade-plugin</artifactId>
1221                     <version>3.2.4</version>
1222                 </plugin>
1223                 <plugin>
1224                     <groupId>org.apache.maven.plugins</groupId>
1225                     <artifactId>maven-archetype-plugin</artifactId>
1226                     <version>3.2.0</version>
1227                 </plugin>
1228                 <plugin>
1229                     <groupId>com.coderplus.maven.plugins</groupId>
1230                     <artifactId>copy-rename-maven-plugin</artifactId>
1231                     <version>1.0.1</version>
1232                 </plugin>
1233                 <plugin>
1234                     <groupId>org.apache.maven.plugins</groupId>
1235                     <artifactId>maven-compiler-plugin</artifactId>
1236                     <version>3.8.1</version>
1237                     <configuration>
1238                         <encoding>${project.build.sourceEncoding}</encoding>
1239                         <release>${java.version}</release>
1240                     </configuration>
1241                 </plugin>
1242                 <plugin>
1243                     <groupId>org.codehaus.mojo</groupId>
1244                     <artifactId>exec-maven-plugin</artifactId>
1245                     <version>3.0.0</version>
1246                 </plugin>
1247                 <plugin>
1248                     <groupId>org.apache.maven.plugins</groupId>
1249                     <artifactId>maven-war-plugin</artifactId>
1250                     <version>3.3.1</version>
1251                 </plugin>
1252                 <plugin>
1253                     <groupId>io.fabric8</groupId>
1254                     <artifactId>docker-maven-plugin</artifactId>
1255                     <version>0.40.1</version>
1256                 </plugin>
1257                 <plugin>
1258                     <groupId>org.kie</groupId>
1259                     <artifactId>kie-maven-plugin</artifactId>
1260                     <version>${version.drools}</version>
1261                     <extensions>true</extensions>
1262                 </plugin>
1263                 <plugin>
1264                     <groupId>org.springframework.boot</groupId>
1265                     <artifactId>spring-boot-maven-plugin</artifactId>
1266                     <version>${version.springboot}</version>
1267                 </plugin>
1268                 <plugin>
1269                     <groupId>io.github.git-commit-id</groupId>
1270                     <artifactId>git-commit-id-maven-plugin</artifactId>
1271                     <version>5.0.0</version>
1272                     <executions>
1273                         <execution>
1274                             <goals>
1275                                 <goal>revision</goal>
1276                             </goals>
1277                         </execution>
1278                     </executions>
1279                     <configuration>
1280                         <skipPoms>false</skipPoms>
1281                         <generateGitPropertiesFile>false</generateGitPropertiesFile>
1282                         <includeOnlyProperties>
1283                             <includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty>
1284                             <includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty>
1285                         </includeOnlyProperties>
1286                         <commitIdGenerationMode>full</commitIdGenerationMode>
1287                         <dateFormat>yyyy-MM-dd'T'HH:mm:ss.SSS'Z'</dateFormat>
1288                         <dateFormatTimeZone>UTC</dateFormatTimeZone>
1289                     </configuration>
1290                 </plugin>
1291             </plugins>
1292         </pluginManagement>
1293
1294         <plugins>
1295             <plugin>
1296                 <groupId>org.apache.maven.plugins</groupId>
1297                 <artifactId>maven-compiler-plugin</artifactId>
1298                 <configuration>
1299                     <encoding>${project.build.sourceEncoding}</encoding>
1300                     <source>${java.version}</source>
1301                     <target>${java.version}</target>
1302                 </configuration>
1303             </plugin>
1304             <plugin>
1305                 <groupId>org.jacoco</groupId>
1306                 <artifactId>jacoco-maven-plugin</artifactId>
1307                 <executions>
1308                     <execution>
1309                         <id>pre-unit-test</id>
1310                         <goals>
1311                             <goal>prepare-agent</goal>
1312                         </goals>
1313                         <configuration>
1314                             <destFile>${jacoco.dataFile}</destFile>
1315                             <append>true</append>
1316                         </configuration>
1317                     </execution>
1318                     <execution>
1319                         <id>post-unit-test</id>
1320                         <phase>test</phase>
1321                         <goals>
1322                             <goal>report</goal>
1323                         </goals>
1324                         <configuration>
1325                             <dataFile>${jacoco.dataFile}</dataFile>
1326                         </configuration>
1327                     </execution>
1328                     <execution>
1329                         <id>pre-integration-test</id>
1330                         <phase>pre-integration-test</phase>
1331                         <goals>
1332                             <goal>prepare-agent</goal>
1333                         </goals>
1334                         <configuration>
1335                             <skip>true</skip>
1336                         </configuration>
1337                     </execution>
1338                     <execution>
1339                         <id>post-integration-test</id>
1340                         <phase>post-integration-test</phase>
1341                         <goals>
1342                             <goal>report</goal>
1343                         </goals>
1344                         <configuration>
1345                             <skip>true</skip>
1346                         </configuration>
1347                     </execution>
1348                     <execution>
1349                         <id>report-aggregate</id>
1350                         <phase>prepare-package</phase>
1351                         <goals>
1352                             <goal>report-aggregate</goal>
1353                         </goals>
1354                     </execution>
1355                 </executions>
1356             </plugin>
1357             <plugin>
1358                 <artifactId>maven-checkstyle-plugin</artifactId>
1359                 <executions>
1360                     <execution>
1361                         <id>onap-license</id>
1362                         <goals>
1363                             <goal>check</goal>
1364                         </goals>
1365                         <phase>process-sources</phase>
1366                         <configuration>
1367                             <configLocation>onap-checkstyle/check-license.xml</configLocation>
1368                             <includeResources>false</includeResources>
1369                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
1370                             <includeTestResources>false</includeTestResources>
1371                             <sourceDirectories>
1372                                 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
1373                             </sourceDirectories>
1374                             <consoleOutput>true</consoleOutput>
1375                             <failOnViolation>true</failOnViolation>
1376                             <violationSeverity>warning</violationSeverity>
1377                         </configuration>
1378                     </execution>
1379                     <execution>
1380                         <id>onap-java-style</id>
1381                         <goals>
1382                             <goal>check</goal>
1383                         </goals>
1384                         <phase>process-sources</phase>
1385                         <configuration>
1386                             <!-- Use Google Java Style Guide:
1387                               https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
1388                               with minor changes -->
1389                             <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
1390                             <!-- <sourceDirectory> is needed so that checkstyle ignores the generated
1391                                 sources directory -->
1392                             <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
1393                             <includeResources>true</includeResources>
1394                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
1395                             <includeTestResources>true</includeTestResources>
1396                             <excludes></excludes>
1397                             <consoleOutput>true</consoleOutput>
1398                             <failOnViolation>true</failOnViolation>
1399                             <violationSeverity>warning</violationSeverity>
1400                         </configuration>
1401                     </execution>
1402                 </executions>
1403                 <dependencies>
1404                     <dependency>
1405                         <groupId>org.onap.oparent</groupId>
1406                         <artifactId>checkstyle</artifactId>
1407                         <version>${oparent.version}</version>
1408                         <scope>compile</scope>
1409                     </dependency>
1410                 </dependencies>
1411             </plugin>
1412         </plugins>
1413     </build>
1414 </project>