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