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