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