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