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