Adding dependencies from clamp participants to parent/integration
[policy/parent.git] / integration / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3    Copyright (C) 2018 Ericsson. All rights reserved.
4    Modifications Copyright (C) 2018-2021 AT&T. All rights reserved.
5    Modifications Copyright (C) 2019-2021 Nordix Foundation.
6    Modifications Copyright (C) 2020-2021 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.4.0-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         <version.logback>1.2.3</version.logback>
40         <version.dmaap>1.1.12</version.dmaap>
41         <version.powermock>2.0.9</version.powermock>
42         <version.eclipselink>2.7.8</version.eclipselink>
43         <version.drools>7.33.0.Final</version.drools>
44         <version.jersey>2.33</version.jersey>
45         <version.jackson>2.11.3</version.jackson>
46         <version.ccsdk>0.7.5</version.ccsdk>
47         <version.swagger>1.6.2</version.swagger>
48         <version.javax.bind>2.3.1</version.javax.bind>
49         <version.javax.json>1.1.4</version.javax.json>
50         <version.netty>4.1.63.Final</version.netty>
51         <version.springboot>2.5.0</version.springboot>
52         <version.eelf.core>1.0.0</version.eelf.core>
53         <version.camel>3.7.3</version.camel>
54         <version.tomcat>9.0.45</version.tomcat>
55         <version.mockserver>5.11.2</version.mockserver>
56         <version.immutable>2.8.8</version.immutable>
57         <version.springfox>3.0.0</version.springfox>
58         <version.jakarta-api>2.0.2</version.jakarta-api>
59         <jacoco.dataFile>${project.basedir}/../target/code-coverage/jacoco-ut.exec</jacoco.dataFile>
60         <repo.npm>https://nexus3.onap.org/repository/npm.public/npm/-/</repo.npm>
61     </properties>
62
63     <distributionManagement>
64         <site>
65             <id>ecomp-site</id>
66             <url>dav:${onap.nexus.url}${sitePath}</url>
67         </site>
68     </distributionManagement>
69
70     <dependencyManagement>
71         <dependencies>
72             <dependency>
73                 <groupId>jakarta.validation</groupId>
74                 <artifactId>jakarta.validation-api</artifactId>
75                 <version>${version.jakarta-api}</version>
76             </dependency>
77
78             <!-- Jackson - needed by glassfish jersey -->
79             <dependency>
80                 <groupId>com.fasterxml.jackson.module</groupId>
81                 <artifactId>jackson-module-jaxb-annotations</artifactId>
82                 <version>${version.jackson}</version>
83             </dependency>
84
85             <!-- Jersey -->
86             <dependency>
87                 <groupId>org.glassfish.jersey.core</groupId>
88                 <artifactId>jersey-server</artifactId>
89                 <version>${version.jersey}</version>
90                 <exclusions>
91                     <exclusion>
92                         <groupId>org.glassfish.jersey.media</groupId>
93                         <artifactId>jersey-media-jaxb</artifactId>
94                     </exclusion>
95                 </exclusions>
96             </dependency>
97
98             <dependency>
99                 <groupId>org.glassfish.jersey.containers</groupId>
100                 <artifactId>jersey-container-servlet-core</artifactId>
101                 <version>${version.jersey}</version>
102             </dependency>
103
104             <dependency>
105                 <groupId>org.glassfish.jersey.containers</groupId>
106                 <artifactId>jersey-container-jetty-http</artifactId>
107                 <version>${version.jersey}</version>
108                 <exclusions>
109                     <exclusion>
110                         <groupId>org.eclipse.jetty</groupId>
111                         <artifactId>jetty-util</artifactId>
112                     </exclusion>
113                 </exclusions>
114             </dependency>
115
116             <dependency>
117                 <groupId>org.glassfish.jersey.core</groupId>
118                 <artifactId>jersey-client</artifactId>
119                 <version>${version.jersey}</version>
120             </dependency>
121
122             <dependency>
123                 <groupId>org.glassfish.jersey.core</groupId>
124                 <artifactId>jersey-common</artifactId>
125                 <version>${version.jersey}</version>
126             </dependency>
127
128             <dependency>
129                 <groupId>org.glassfish.jersey.inject</groupId>
130                 <artifactId>jersey-hk2</artifactId>
131                 <version>${version.jersey}</version>
132             </dependency>
133
134             <dependency>
135                 <groupId>org.glassfish.jersey.containers</groupId>
136                 <artifactId>jersey-container-grizzly2-http</artifactId>
137                 <version>${version.jersey}</version>
138             </dependency>
139
140             <dependency>
141                 <groupId>org.glassfish.jersey.media</groupId>
142                 <artifactId>jersey-media-moxy</artifactId>
143                 <version>${version.jersey}</version>
144             </dependency>
145
146             <dependency>
147                 <groupId>org.glassfish.jersey.media</groupId>
148                 <artifactId>jersey-media-json-jackson</artifactId>
149                 <version>${version.jersey}</version>
150                 <exclusions>
151                     <exclusion>
152                         <groupId>com.fasterxml.jackson.module</groupId>
153                         <artifactId>jackson-module-jaxb-annotations</artifactId>
154                     </exclusion>
155                 </exclusions>
156             </dependency>
157
158             <dependency>
159                 <groupId>org.glassfish.jersey.test-framework</groupId>
160                 <artifactId>jersey-test-framework-core</artifactId>
161                 <version>${version.jersey}</version>
162             </dependency>
163
164             <dependency>
165                 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
166                 <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
167                 <version>${version.jersey}</version>
168             </dependency>
169
170             <dependency>
171                 <groupId>org.glassfish.jersey.media</groupId>
172                 <artifactId>jersey-media-multipart</artifactId>
173                 <version>${version.jersey}</version>
174             </dependency>
175
176             <!-- RE2J in lieu of java.util Pattern -->
177             <dependency>
178                 <groupId>com.google.re2j</groupId>
179                 <artifactId>re2j</artifactId>
180                 <version>1.5</version>
181             </dependency>
182
183             <!-- MariaDB -->
184             <dependency>
185                 <groupId>org.mariadb.jdbc</groupId>
186                 <artifactId>mariadb-java-client</artifactId>
187                 <version>2.7.1</version>
188             </dependency>
189
190             <!-- Swagger Jersey2 JAXRS -->
191             <dependency>
192                 <groupId>io.swagger</groupId>
193                 <artifactId>swagger-jersey2-jaxrs</artifactId>
194                 <version>${version.swagger}</version>
195                 <exclusions>
196                     <exclusion>
197                         <groupId>org.glassfish.jersey.containers</groupId>
198                         <artifactId>jersey-container-servlet-core</artifactId>
199                     </exclusion>
200                 </exclusions>
201             </dependency>
202
203             <!-- Encoder and decoders for various formats -->
204             <dependency>
205                 <groupId>commons-codec</groupId>
206                 <artifactId>commons-codec</artifactId>
207                 <version>1.15</version>
208             </dependency>
209
210             <dependency>
211                 <groupId>com.thoughtworks.xstream</groupId>
212                 <artifactId>xstream</artifactId>
213                 <version>1.4.15</version>
214             </dependency>
215
216             <!-- Eclipse JPA API -->
217             <dependency>
218                 <groupId>org.eclipse.persistence</groupId>
219                 <artifactId>org.eclipse.persistence.jpa</artifactId>
220                 <version>${version.eclipselink}</version>
221             </dependency>
222
223             <!-- EclipseLink API -->
224             <dependency>
225                 <groupId>org.eclipse.persistence</groupId>
226                 <artifactId>eclipselink</artifactId>
227                 <version>${version.eclipselink}</version>
228             </dependency>
229
230             <!-- Java Servlet API -->
231             <dependency>
232                 <groupId>javax.servlet</groupId>
233                 <artifactId>javax.servlet-api</artifactId>
234                 <version>4.0.1</version>
235             </dependency>
236
237             <!-- HttpComponents Client -->
238             <dependency>
239                 <groupId>org.apache.httpcomponents</groupId>
240                 <artifactId>httpclient</artifactId>
241                 <version>4.5.13</version>
242             </dependency>
243
244             <!-- HttpComponents Core (blocking I/O) -->
245             <dependency>
246                 <groupId>org.apache.httpcomponents</groupId>
247                 <artifactId>httpcore</artifactId>
248                 <version>4.4.14</version>
249             </dependency>
250
251             <!-- JSON marshalling and unmarshalling -->
252             <dependency>
253                 <groupId>com.google.code.gson</groupId>
254                 <artifactId>gson</artifactId>
255                 <version>2.8.6</version>
256             </dependency>
257             <dependency>
258                 <groupId>org.json</groupId>
259                 <artifactId>json</artifactId>
260                 <version>20201115</version>
261             </dependency>
262
263             <!-- Lombok -->
264             <dependency>
265                 <groupId>org.projectlombok</groupId>
266                 <artifactId>lombok</artifactId>
267                 <version>1.18.16</version>
268             </dependency>
269
270             <!-- Logging -->
271             <dependency>
272                 <groupId>org.slf4j</groupId>
273                 <artifactId>slf4j-api</artifactId>
274                 <version>1.7.30</version>
275             </dependency>
276             <dependency>
277                 <groupId>org.slf4j</groupId>
278                 <artifactId>slf4j-ext</artifactId>
279                 <version>1.7.30</version>
280             </dependency>
281             <dependency>
282                 <groupId>ch.qos.logback</groupId>
283                 <artifactId>logback-core</artifactId>
284                 <version>${version.logback}</version>
285             </dependency>
286             <dependency>
287                 <groupId>ch.qos.logback</groupId>
288                 <artifactId>logback-classic</artifactId>
289                 <version>${version.logback}</version>
290             </dependency>
291
292             <!-- Dmaap Client -->
293             <dependency>
294                 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
295                 <artifactId>dmaapClient</artifactId>
296                 <version>${version.dmaap}</version>
297             </dependency>
298
299             <!-- CDS dependencies -->
300             <dependency>
301                 <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
302                 <artifactId>blueprint-proto</artifactId>
303                 <version>${version.ccsdk}</version>
304                 <exclusions>
305                     <exclusion>
306                         <groupId>io.springfox</groupId>
307                         <artifactId>springfox-boot-starter</artifactId>
308                     </exclusion>
309                 </exclusions>
310             </dependency>
311
312             <!-- AAF Client -->
313             <dependency>
314                 <groupId>org.onap.aaf.authz</groupId>
315                 <artifactId>aaf-cadi-aaf</artifactId>
316                 <version>2.1.21</version>
317                 <exclusions>
318                     <exclusion>
319                         <groupId>log4j</groupId>
320                         <artifactId>log4j</artifactId>
321                     </exclusion>
322                 </exclusions>
323             </dependency>
324
325             <!-- Client library for Cambria event routing API -->
326             <dependency>
327                 <groupId>com.att.nsa</groupId>
328                 <artifactId>cambriaClient</artifactId>
329                 <version>1.2.1-oss</version>
330             </dependency>
331             <dependency>
332                 <groupId>com.att.nsa</groupId>
333                 <artifactId>saClientLibrary</artifactId>
334                 <version>1.3.0-oss</version>
335             </dependency>
336
337             <!-- Commons CLI for command line parsing -->
338             <dependency>
339                 <groupId>commons-cli</groupId>
340                 <artifactId>commons-cli</artifactId>
341                 <version>1.4</version>
342             </dependency>
343
344             <!-- Web Sockets -->
345             <dependency>
346                 <groupId>org.java-websocket</groupId>
347                 <artifactId>Java-WebSocket</artifactId>
348                 <version>1.5.1</version>
349             </dependency>
350
351             <!-- SnakeYAML -->
352             <dependency>
353                 <groupId>org.yaml</groupId>
354                 <artifactId>snakeyaml</artifactId>
355                 <version>1.27</version>
356             </dependency>
357
358             <!-- Drools -->
359
360             <!--
361             Security Issues: 1 of 2
362             This dependency is trying to upgrade security fixes
363             identified. If it is removed or manipulated then please
364             fix the 2nd change as noted below.
365             -->
366
367             <dependency>
368                 <groupId>org.codehaus.plexus</groupId>
369                 <artifactId>plexus-utils</artifactId>
370                 <version>3.3.0</version>
371             </dependency>
372
373             <dependency>
374                 <groupId>org.kie</groupId>
375                 <artifactId>kie-api</artifactId>
376                 <version>${version.drools}</version>
377             </dependency>
378
379             <dependency>
380                 <groupId>org.kie</groupId>
381                 <artifactId>kie-ci</artifactId>
382                 <version>${version.drools}</version>
383
384                 <!--
385                 Issue: 2 of 2
386                 Excluding these 2 dependencies in order to force upgrade security fixes
387                 identified. As declared above. Any changes here should be reflected above
388                 and vice versa.
389                 -->
390
391                 <exclusions>
392                     <exclusion>
393                         <groupId>org.codehaus.plexus</groupId>
394                         <artifactId>plexus-utils</artifactId>
395                     </exclusion>
396                 </exclusions>
397             </dependency>
398
399             <dependency>
400                 <groupId>org.drools</groupId>
401                 <artifactId>drools-core</artifactId>
402                 <version>${version.drools}</version>
403             </dependency>
404
405             <dependency>
406                 <groupId>org.drools</groupId>
407                 <artifactId>drools-persistence-jpa</artifactId>
408                 <version>${version.drools}</version>
409             </dependency>
410
411             <dependency>
412                 <groupId>org.drools</groupId>
413                 <artifactId>drools-compiler</artifactId>
414                 <version>${version.drools}</version>
415             </dependency>
416
417             <dependency>
418                 <groupId>org.drools</groupId>
419                 <artifactId>drools-verifier-drl</artifactId>
420                 <version>${version.drools}</version>
421             </dependency>
422
423             <dependency>
424                 <groupId>org.drools</groupId>
425                 <artifactId>drools-verifier-api</artifactId>
426                 <version>${version.drools}</version>
427             </dependency>
428
429             <dependency>
430                 <groupId>org.drools</groupId>
431                 <artifactId>drools-verifier-core</artifactId>
432                 <version>${version.drools}</version>
433             </dependency>
434
435             <dependency>
436                 <groupId>org.dom4j</groupId>
437                 <artifactId>dom4j</artifactId>
438                 <version>2.1.3</version>
439             </dependency>
440
441             <!-- Mockserver -->
442             <dependency>
443                 <groupId>org.mock-server</groupId>
444                 <artifactId>mockserver-netty</artifactId>
445                 <version>${version.mockserver}</version>
446                 <scope>test</scope>
447             </dependency>
448
449             <dependency>
450                 <groupId>org.mock-server</groupId>
451                 <artifactId>mockserver-client-java</artifactId>
452                 <version>${version.mockserver}</version>
453                 <scope>test</scope>
454             </dependency>
455
456             <!-- Immutables -->
457             <dependency>
458                 <groupId>org.immutables</groupId>
459                 <artifactId>value</artifactId>
460                 <version>${version.immutable}</version>
461                 <scope>provided</scope>
462             </dependency>
463
464             <dependency>
465                 <groupId>org.immutables</groupId>
466                 <artifactId>gson</artifactId>
467                 <version>${version.immutable}</version>
468             </dependency>
469
470             <!-- Springfox -->
471             <dependency>
472                 <groupId>io.springfox</groupId>
473                 <artifactId>springfox-swagger2</artifactId>
474                 <version>${version.springfox}</version>
475             </dependency>
476
477             <dependency>
478                 <groupId>io.springfox</groupId>
479                 <artifactId>springfox-swagger-ui</artifactId>
480                 <version>${version.springfox}</version>
481                 <scope>runtime</scope>
482             </dependency>
483
484             <!-- File upload -->
485             <dependency>
486                 <groupId>commons-fileupload</groupId>
487                 <artifactId>commons-fileupload</artifactId>
488                 <version>1.4</version>
489             </dependency>
490
491             <!-- Janino -->
492             <dependency>
493                 <groupId>org.codehaus.janino</groupId>
494                 <artifactId>janino</artifactId>
495                 <version>3.0.8</version>
496             </dependency>
497
498             <!-- Tomcat -->
499             <dependency>
500                 <groupId>org.apache.tomcat.embed</groupId>
501                 <artifactId>tomcat-embed-core</artifactId>
502                 <version>${version.tomcat}</version>
503             </dependency>
504
505             <!-- jaxws -->
506             <dependency>
507                 <groupId>javax.xml.ws</groupId>
508                 <artifactId>jaxws-api</artifactId>
509                 <version>2.3.1</version>
510             </dependency>
511
512             <dependency>
513                 <groupId>org.onap.sdc.sdc-distribution-client</groupId>
514                 <artifactId>sdc-distribution-client</artifactId>
515                 <version>1.4.1</version>
516             </dependency>
517
518             <dependency>
519             <groupId>org.onap.sdc.sdc-tosca</groupId>
520             <artifactId>sdc-tosca</artifactId>
521             <version>1.5.1</version>
522             </dependency>
523
524             <dependency>
525                 <groupId>org.jboss.spec.javax.ws.rs</groupId>
526                 <artifactId>jboss-jaxrs-api_2.0_spec</artifactId>
527                 <version>1.0.1.Final</version>
528             </dependency>
529
530             <!-- transaction api -->
531             <dependency>
532                 <groupId>javax.transaction</groupId>
533                 <artifactId>jta</artifactId>
534                 <version>1.1</version>
535             </dependency>
536
537             <!-- Test dependencies -->
538
539             <!-- In memory Database Engine -->
540             <dependency>
541                 <groupId>com.h2database</groupId>
542                 <artifactId>h2</artifactId>
543                 <version>1.4.200</version>
544                 <scope>test</scope>
545             </dependency>
546
547             <!-- JUNIT -->
548             <dependency>
549                 <groupId>junit</groupId>
550                 <artifactId>junit</artifactId>
551                 <version>4.13.1</version>
552                 <scope>test</scope>
553             </dependency>
554
555             <!-- Junit vintage -->
556             <dependency>
557                 <groupId>org.junit.vintage</groupId>
558                 <artifactId>junit-vintage-engine</artifactId>
559                 <version>5.7.1</version>
560                 <scope>test</scope>
561             </dependency>
562
563             <!-- Cucumber Tests -->
564             <dependency>
565                 <groupId>io.cucumber</groupId>
566                 <artifactId>cucumber-java</artifactId>
567                 <version>6.9.1</version>
568                 <scope>test</scope>
569             </dependency>
570             <dependency>
571                 <groupId>io.cucumber</groupId>
572                 <artifactId>cucumber-junit</artifactId>
573                 <version>6.9.1</version>
574                 <scope>test</scope>
575             </dependency>
576
577             <!-- Exception testing -->
578             <dependency>
579                 <groupId>org.assertj</groupId>
580                 <artifactId>assertj-core</artifactId>
581                 <version>3.18.1</version>
582                 <scope>test</scope>
583             </dependency>
584
585             <!-- Mock libraries -->
586             <dependency>
587                 <groupId>com.openpojo</groupId>
588                 <artifactId>openpojo</artifactId>
589                 <version>0.8.13</version>
590                 <scope>test</scope>
591             </dependency>
592             <dependency>
593                 <groupId>org.mockito</groupId>
594                 <artifactId>mockito-all</artifactId>
595                 <version>1.10.19</version>
596                 <scope>test</scope>
597             </dependency>
598             <dependency>
599                 <groupId>org.powermock</groupId>
600                 <artifactId>powermock-core</artifactId>
601                 <version>${version.powermock}</version>
602                 <scope>test</scope>
603             </dependency>
604             <dependency>
605                 <groupId>org.powermock</groupId>
606                 <artifactId>powermock-api-mockito2</artifactId>
607                 <version>${version.powermock}</version>
608                 <scope>test</scope>
609             </dependency>
610             <dependency>
611                 <groupId>org.powermock</groupId>
612                 <artifactId>powermock-module-junit4</artifactId>
613                 <version>${version.powermock}</version>
614                 <scope>test</scope>
615             </dependency>
616             <dependency>
617                 <groupId>org.mockito</groupId>
618                 <artifactId>mockito-core</artifactId>
619                 <version>3.7.7</version>
620                 <scope>test</scope>
621             </dependency>
622
623             <!-- Awaitility -->
624             <dependency>
625                 <groupId>org.awaitility</groupId>
626                 <artifactId>awaitility</artifactId>
627                 <version>4.0.3</version>
628                 <scope>test</scope>
629             </dependency>
630
631             <!-- Netty -->
632             <dependency>
633                 <groupId>io.netty</groupId>
634                 <artifactId>netty-all</artifactId>
635                 <version>${version.netty}</version>
636             </dependency>
637             <dependency>
638                 <groupId>io.netty</groupId>
639                 <artifactId>netty-codec-http2</artifactId>
640                 <version>${version.netty}</version>
641             </dependency>
642             <dependency>
643                 <groupId>io.netty</groupId>
644                 <artifactId>netty-handler-proxy</artifactId>
645                 <version>${version.netty}</version>
646             </dependency>
647
648             <!-- Commons Lang -->
649             <dependency>
650                 <groupId>org.apache.commons</groupId>
651                 <artifactId>commons-lang3</artifactId>
652                 <version>3.11</version>
653             </dependency>
654
655             <!-- Commons IO -->
656             <dependency>
657                 <groupId>commons-io</groupId>
658                 <artifactId>commons-io</artifactId>
659                 <version>2.8.0</version>
660             </dependency>
661
662             <dependency>
663             <groupId>org.apache.commons</groupId>
664             <artifactId>commons-vfs2</artifactId>
665             <version>2.8.0</version>
666             </dependency>
667
668             <dependency>
669                 <groupId>com.googlecode.json-simple</groupId>
670                 <artifactId>json-simple</artifactId>
671                 <version>1.1.1</version>
672             </dependency>
673
674             <dependency>
675                 <groupId>com.github.docker-java</groupId>
676                 <artifactId>docker-java-core</artifactId>
677                 <version>3.2.7</version>
678                 <scope>test</scope>
679             </dependency>
680
681             <dependency>
682                 <groupId>com.github.docker-java</groupId>
683                 <artifactId>docker-java</artifactId>
684                 <version>3.2.7</version>
685                 <scope>test</scope>
686             </dependency>
687         </dependencies>
688
689     </dependencyManagement>
690
691
692     <scm>
693         <connection>scm:git:ssh://git.onap.org:29418/${project.groupId}</connection>
694         <developerConnection>scm:git:ssh://git.onap.org:29418/${project.groupId}</developerConnection>
695         <tag>HEAD</tag>
696         <url>https://wiki.onap.org/display/DW/Integration+Project</url>
697     </scm>
698
699     <profiles>
700         <profile>
701             <id>m2e</id>
702             <!-- This profile is only active when the property "m2e.version" is set,
703                 which is the case when building in Eclipse with m2e. -->
704             <activation>
705                 <property>
706                     <name>m2e.version</name>
707                 </property>
708             </activation>
709             <build>
710                 <pluginManagement>
711                     <plugins>
712                         <plugin>
713                             <groupId>org.eclipse.m2e</groupId>
714                             <artifactId>lifecycle-mapping</artifactId>
715                             <version>1.0.0</version>
716                             <configuration>
717                                 <lifecycleMappingMetadata>
718                                     <pluginExecutions>
719                                         <pluginExecution>
720                                             <pluginExecutionFilter>
721                                                 <groupId>org.apache.maven.plugins</groupId>
722                                                 <artifactId>maven-checkstyle-plugin</artifactId>
723                                                 <versionRange>2.17,)</versionRange>
724                                                 <goals>
725                                                     <goal>check</goal>
726                                                 </goals>
727                                             </pluginExecutionFilter>
728                                             <action>
729                                                 <ignore />
730                                             </action>
731                                         </pluginExecution>
732                                         <pluginExecution>
733                                             <pluginExecutionFilter>
734                                                 <groupId>org.jacoco</groupId>
735                                                 <artifactId>jacoco-maven-plugin</artifactId>
736                                                 <versionRange>[0.7.1.201405082137,)</versionRange>
737                                                 <goals>
738                                                     <goal>prepare-agent</goal>
739                                                 </goals>
740                                             </pluginExecutionFilter>
741                                             <action>
742                                                 <ignore />
743                                             </action>
744                                         </pluginExecution>
745                                         <pluginExecution>
746                                             <pluginExecutionFilter>
747                                                 <groupId>de.jpdigital</groupId>
748                                                 <artifactId>hibernate52-ddl-maven-plugin</artifactId>
749                                                 <versionRange>[2.2.0,)</versionRange>
750                                                 <goals>
751                                                     <goal>gen-ddl</goal>
752                                                 </goals>
753                                             </pluginExecutionFilter>
754                                             <action>
755                                                 <ignore />
756                                             </action>
757                                         </pluginExecution>
758                                         <pluginExecution>
759                                             <pluginExecutionFilter>
760                                                 <groupId>org.codehaus.groovy.maven</groupId>
761                                                 <artifactId>gmaven-plugin</artifactId>
762                                                 <versionRange>[1.0,)</versionRange>
763                                                 <goals>
764                                                     <goal>execute</goal>
765                                                 </goals>
766                                             </pluginExecutionFilter>
767                                             <action>
768                                                 <ignore />
769                                             </action>
770                                         </pluginExecution>
771                                         <pluginExecution>
772                                             <pluginExecutionFilter>
773                                                 <groupId>org.codehaus.mojo</groupId>
774                                                 <artifactId>exec-maven-plugin</artifactId>
775                                                 <versionRange>[3.0.0,)</versionRange>
776                                                 <goals>
777                                                     <goal>exec</goal>
778                                                 </goals>
779                                             </pluginExecutionFilter>
780                                             <action>
781                                                 <ignore />
782                                             </action>
783                                         </pluginExecution>
784                                         <pluginExecution>
785                                             <pluginExecutionFilter>
786                                                 <groupId>org.codehaus.mojo</groupId>
787                                                 <artifactId>keytool-maven-plugin</artifactId>
788                                                 <versionRange>[1.5.0,)</versionRange>
789                                                 <goals>
790                                                     <goal>generateKeyPair</goal>
791                                                 </goals>
792                                             </pluginExecutionFilter>
793                                             <action>
794                                                 <ignore />
795                                             </action>
796                                         </pluginExecution>
797                                         <pluginExecution>
798                                             <pluginExecutionFilter>
799                                                 <groupId>com.github.eirslett</groupId>
800                                                 <artifactId>frontend-maven-plugin</artifactId>
801                                                 <versionRange>[1.11.0,)</versionRange>
802                                                 <goals>
803                                                     <goal>npm</goal>
804                                                 </goals>
805                                             </pluginExecutionFilter>
806                                             <action>
807                                                 <ignore />
808                                             </action>
809                                         </pluginExecution>
810                                     </pluginExecutions>
811                                 </lifecycleMappingMetadata>
812                             </configuration>
813                         </plugin>
814                     </plugins>
815                 </pluginManagement>
816             </build>
817         </profile>
818     </profiles>
819
820     <build>
821         <extensions>
822             <extension>
823                 <groupId>org.apache.maven.archetype</groupId>
824                 <artifactId>archetype-packaging</artifactId>
825                 <version>3.2.0</version>
826             </extension>
827         </extensions>
828         <pluginManagement>
829             <plugins>
830                 <plugin>
831                     <groupId>org.codehaus.mojo</groupId>
832                     <artifactId>versions-maven-plugin</artifactId>
833                     <version>2.8.1</version>
834                 </plugin>
835                 <plugin>
836                     <groupId>org.apache.maven.plugins</groupId>
837                     <artifactId>maven-dependency-plugin</artifactId>
838                     <version>3.1.2</version>
839                 </plugin>
840                 <plugin>
841                     <!-- THIS PLUGIN IS RETIRED -->
842                     <groupId>org.apache.maven.plugins</groupId>
843                     <artifactId>maven-reactor-plugin</artifactId>
844                     <version>1.1</version>
845                 </plugin>
846                 <plugin>
847                     <!-- THIS PLUGIN IS RETIRED -->
848                     <!-- Advise to use m2e -->
849                     <groupId>org.apache.maven.plugins</groupId>
850                     <artifactId>maven-eclipse-plugin</artifactId>
851                     <version>2.10</version>
852                 </plugin>
853                 <plugin>
854                     <groupId>org.apache.maven.plugins</groupId>
855                     <artifactId>maven-install-plugin</artifactId>
856                     <version>3.0.0-M1</version>
857                 </plugin>
858                 <plugin>
859                     <groupId>org.apache.maven.plugins</groupId>
860                     <artifactId>maven-resources-plugin</artifactId>
861                     <version>3.2.0</version>
862                 </plugin>
863                 <plugin>
864                     <groupId>org.apache.maven.plugins</groupId>
865                     <artifactId>maven-source-plugin</artifactId>
866                     <version>3.2.1</version>
867                 </plugin>
868                 <plugin>
869                     <groupId>org.apache.maven.plugins</groupId>
870                     <artifactId>maven-release-plugin</artifactId>
871                     <version>3.0.0-M1</version>
872                 </plugin>
873                 <plugin>
874                     <groupId>org.apache.maven.plugins</groupId>
875                     <artifactId>maven-assembly-plugin</artifactId>
876                     <version>3.3.0</version>
877                 </plugin>
878                 <plugin>
879                     <groupId>org.apache.maven.plugins</groupId>
880                     <artifactId>maven-jar-plugin</artifactId>
881                     <version>3.2.0</version>
882                 </plugin>
883                 <plugin>
884                     <groupId>org.apache.maven.plugins</groupId>
885                     <artifactId>maven-javadoc-plugin</artifactId>
886                     <version>3.2.0</version>
887                 </plugin>
888                 <plugin>
889                     <groupId>org.apache.maven.plugins</groupId>
890                     <artifactId>maven-shade-plugin</artifactId>
891                     <version>3.2.4</version>
892                 </plugin>
893                 <plugin>
894                     <groupId>org.apache.maven.plugins</groupId>
895                     <artifactId>maven-archetype-plugin</artifactId>
896                     <version>3.2.0</version>
897                 </plugin>
898                 <plugin>
899                     <groupId>com.coderplus.maven.plugins</groupId>
900                     <artifactId>copy-rename-maven-plugin</artifactId>
901                     <version>1.0.1</version>
902                 </plugin>
903                 <plugin>
904                     <groupId>org.apache.maven.plugins</groupId>
905                     <artifactId>maven-compiler-plugin</artifactId>
906                     <version>3.8.1</version>
907                     <configuration>
908                         <encoding>${project.build.sourceEncoding}</encoding>
909                         <release>${java.version}</release>
910                     </configuration>
911                 </plugin>
912                 <plugin>
913                     <groupId>org.codehaus.mojo</groupId>
914                     <artifactId>exec-maven-plugin</artifactId>
915                     <version>3.0.0</version>
916                 </plugin>
917                 <plugin>
918                     <groupId>org.apache.maven.plugins</groupId>
919                     <artifactId>maven-war-plugin</artifactId>
920                     <version>3.3.1</version>
921                 </plugin>
922                 <plugin>
923                     <groupId>io.fabric8</groupId>
924                     <artifactId>docker-maven-plugin</artifactId>
925                     <version>0.34.1</version>
926                 </plugin>
927                 <plugin>
928                     <groupId>org.kie</groupId>
929                     <artifactId>kie-maven-plugin</artifactId>
930                     <version>${version.drools}</version>
931                     <extensions>true</extensions>
932                 </plugin>
933                 <plugin>
934                     <groupId>org.springframework.boot</groupId>
935                     <artifactId>spring-boot-maven-plugin</artifactId>
936                     <version>${version.springboot}</version>
937                 </plugin>
938             </plugins>
939         </pluginManagement>
940
941         <plugins>
942             <plugin>
943                 <groupId>org.apache.maven.plugins</groupId>
944                 <artifactId>maven-compiler-plugin</artifactId>
945                 <configuration>
946                     <encoding>${project.build.sourceEncoding}</encoding>
947                     <source>${java.version}</source>
948                     <target>${java.version}</target>
949                 </configuration>
950             </plugin>
951             <plugin>
952                 <groupId>org.jacoco</groupId>
953                 <artifactId>jacoco-maven-plugin</artifactId>
954                 <executions>
955                     <execution>
956                         <id>pre-unit-test</id>
957                         <goals>
958                             <goal>prepare-agent</goal>
959                         </goals>
960                         <configuration>
961                             <destFile>${jacoco.dataFile}</destFile>
962                             <append>true</append>
963                         </configuration>
964                     </execution>
965                     <execution>
966                         <id>post-unit-test</id>
967                         <phase>test</phase>
968                         <goals>
969                             <goal>report</goal>
970                         </goals>
971                         <configuration>
972                             <dataFile>${jacoco.dataFile}</dataFile>
973                         </configuration>
974                     </execution>
975                     <execution>
976                         <id>pre-integration-test</id>
977                         <phase>pre-integration-test</phase>
978                         <goals>
979                             <goal>prepare-agent</goal>
980                         </goals>
981                         <configuration>
982                             <skip>true</skip>
983                         </configuration>
984                     </execution>
985                     <execution>
986                         <id>post-integration-test</id>
987                         <phase>post-integration-test</phase>
988                         <goals>
989                             <goal>report</goal>
990                         </goals>
991                         <configuration>
992                             <skip>true</skip>
993                         </configuration>
994                     </execution>
995                     <execution>
996                         <id>report-aggregate</id>
997                         <phase>prepare-package</phase>
998                         <goals>
999                             <goal>report-aggregate</goal>
1000                         </goals>
1001                     </execution>
1002                 </executions>
1003             </plugin>
1004             <plugin>
1005                 <artifactId>maven-checkstyle-plugin</artifactId>
1006                 <executions>
1007                     <execution>
1008                         <id>onap-license</id>
1009                         <goals>
1010                             <goal>check</goal>
1011                         </goals>
1012                         <phase>process-sources</phase>
1013                         <configuration>
1014                             <configLocation>onap-checkstyle/check-license.xml</configLocation>
1015                             <includeResources>false</includeResources>
1016                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
1017                             <includeTestResources>false</includeTestResources>
1018                             <sourceDirectories>
1019                                 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
1020                             </sourceDirectories>
1021                             <consoleOutput>true</consoleOutput>
1022                             <failOnViolation>true</failOnViolation>
1023                             <violationSeverity>warning</violationSeverity>
1024                         </configuration>
1025                     </execution>
1026                     <execution>
1027                         <id>onap-java-style</id>
1028                         <goals>
1029                             <goal>check</goal>
1030                         </goals>
1031                         <phase>process-sources</phase>
1032                         <configuration>
1033                             <!-- Use Google Java Style Guide:
1034                               https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
1035                               with minor changes -->
1036                             <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
1037                             <!-- <sourceDirectory> is needed so that checkstyle ignores the generated
1038                                 sources directory -->
1039                             <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
1040                             <includeResources>true</includeResources>
1041                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
1042                             <includeTestResources>true</includeTestResources>
1043                             <excludes>
1044                             </excludes>
1045                             <consoleOutput>true</consoleOutput>
1046                             <failOnViolation>true</failOnViolation>
1047                             <violationSeverity>warning</violationSeverity>
1048                         </configuration>
1049                     </execution>
1050                 </executions>
1051                 <dependencies>
1052                     <dependency>
1053                         <groupId>org.onap.oparent</groupId>
1054                         <artifactId>checkstyle</artifactId>
1055                         <version>${oparent.version}</version>
1056                         <scope>compile</scope>
1057                     </dependency>
1058                 </dependencies>
1059             </plugin>
1060         </plugins>
1061     </build>
1062 </project>