Add jackson annotations
[policy/parent.git] / integration / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3    Copyright (C) 2018 Ericsson. All rights reserved.
4    Modifications Copyright (C) 2018-2020 AT&T. All rights reserved.
5    Modifications Copyright (C) 2019-2020 Nordix Foundation.
6    Modifications Copyright (C) 2020 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.3.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.11</version.dmaap>
41         <version.powermock>2.0.4</version.powermock>
42         <version.eclipselink>2.7.5</version.eclipselink>
43         <version.drools>7.33.0.Final</version.drools>
44         <version.jersey>2.30.1</version.jersey>
45         <version.jackson>2.11.1</version.jackson>
46         <version.ccsdk>0.4.4</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.48.Final</version.netty>
51         <jacoco.dataFile>${project.basedir}/../target/code-coverage/jacoco-ut.exec</jacoco.dataFile>
52     </properties>
53
54     <distributionManagement>
55         <site>
56             <id>ecomp-site</id>
57             <url>dav:${onap.nexus.url}${sitePath}</url>
58         </site>
59     </distributionManagement>
60
61     <dependencyManagement>
62         <dependencies>
63             <!-- Jackson - needed by glassfish jersey -->
64             <dependency>
65                 <groupId>com.fasterxml.jackson.module</groupId>
66                 <artifactId>jackson-module-jaxb-annotations</artifactId>
67                 <version>${version.jackson}</version>
68             </dependency>
69
70             <!-- Jersey -->
71             <dependency>
72                 <groupId>org.glassfish.jersey.core</groupId>
73                 <artifactId>jersey-server</artifactId>
74                 <version>${version.jersey}</version>
75                 <exclusions>
76                     <exclusion>
77                         <groupId>org.glassfish.jersey.media</groupId>
78                         <artifactId>jersey-media-jaxb</artifactId>
79                     </exclusion>
80                 </exclusions>
81             </dependency>
82
83             <dependency>
84                 <groupId>org.glassfish.jersey.containers</groupId>
85                 <artifactId>jersey-container-servlet-core</artifactId>
86                 <version>${version.jersey}</version>
87             </dependency>
88
89             <dependency>
90                 <groupId>org.glassfish.jersey.containers</groupId>
91                 <artifactId>jersey-container-jetty-http</artifactId>
92                 <version>${version.jersey}</version>
93                 <exclusions>
94                     <exclusion>
95                         <groupId>org.eclipse.jetty</groupId>
96                         <artifactId>jetty-util</artifactId>
97                     </exclusion>
98                 </exclusions>
99             </dependency>
100
101             <dependency>
102                 <groupId>org.glassfish.jersey.core</groupId>
103                 <artifactId>jersey-client</artifactId>
104                 <version>${version.jersey}</version>
105             </dependency>
106
107             <dependency>
108                 <groupId>org.glassfish.jersey.core</groupId>
109                 <artifactId>jersey-common</artifactId>
110                 <version>${version.jersey}</version>
111             </dependency>
112
113             <dependency>
114                 <groupId>org.glassfish.jersey.inject</groupId>
115                 <artifactId>jersey-hk2</artifactId>
116                 <version>${version.jersey}</version>
117             </dependency>
118
119             <dependency>
120                 <groupId>org.glassfish.jersey.containers</groupId>
121                 <artifactId>jersey-container-grizzly2-http</artifactId>
122                 <version>${version.jersey}</version>
123             </dependency>
124
125             <dependency>
126                 <groupId>org.glassfish.jersey.media</groupId>
127                 <artifactId>jersey-media-moxy</artifactId>
128                 <version>${version.jersey}</version>
129             </dependency>
130
131             <dependency>
132                 <groupId>org.glassfish.jersey.media</groupId>
133                 <artifactId>jersey-media-json-jackson</artifactId>
134                 <version>${version.jersey}</version>
135                 <exclusions>
136                     <exclusion>
137                         <groupId>com.fasterxml.jackson.module</groupId>
138                         <artifactId>jackson-module-jaxb-annotations</artifactId>
139                     </exclusion>
140                 </exclusions>
141             </dependency>
142
143             <dependency>
144                 <groupId>org.glassfish.jersey.test-framework</groupId>
145                 <artifactId>jersey-test-framework-core</artifactId>
146                 <version>${version.jersey}</version>
147             </dependency>
148
149             <dependency>
150                 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
151                 <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
152                 <version>${version.jersey}</version>
153             </dependency>
154
155             <dependency>
156                 <groupId>org.glassfish.jersey.media</groupId>
157                 <artifactId>jersey-media-multipart</artifactId>
158                 <version>${version.jersey}</version>
159             </dependency>
160
161             <!-- RE2J in lieu of java.util Pattern -->
162             <dependency>
163                 <groupId>com.google.re2j</groupId>
164                 <artifactId>re2j</artifactId>
165                 <version>1.4</version>
166             </dependency>
167
168             <!-- MariaDB -->
169             <dependency>
170                 <groupId>org.mariadb.jdbc</groupId>
171                 <artifactId>mariadb-java-client</artifactId>
172                 <version>2.2.6</version>
173             </dependency>
174
175             <!-- Swagger Jersey2 JAXRS -->
176             <dependency>
177                 <groupId>io.swagger</groupId>
178                 <artifactId>swagger-jersey2-jaxrs</artifactId>
179                 <version>${version.swagger}</version>
180                 <exclusions>
181                     <exclusion>
182                         <groupId>org.glassfish.jersey.containers</groupId>
183                         <artifactId>jersey-container-servlet-core</artifactId>
184                     </exclusion>
185                 </exclusions>
186             </dependency>
187
188             <!-- Encoder and decoders for various formats -->
189             <dependency>
190                 <groupId>commons-codec</groupId>
191                 <artifactId>commons-codec</artifactId>
192                 <version>1.14</version>
193             </dependency>
194
195             <dependency>
196                 <groupId>com.thoughtworks.xstream</groupId>
197                 <artifactId>xstream</artifactId>
198                 <version>1.4.12</version>
199             </dependency>
200
201             <!-- Eclipse Persistence API -->
202             <!-- NOTE: use this instead of persistence-api -->
203             <dependency>
204                 <groupId>org.eclipse.persistence</groupId>
205                 <artifactId>javax.persistence</artifactId>
206                 <version>2.1.0</version>
207             </dependency>
208
209             <!-- Eclipse JPA API -->
210             <dependency>
211                 <groupId>org.eclipse.persistence</groupId>
212                 <artifactId>org.eclipse.persistence.jpa</artifactId>
213                 <version>${version.eclipselink}</version>
214             </dependency>
215
216             <!-- EclipseLink API -->
217             <dependency>
218                 <groupId>org.eclipse.persistence</groupId>
219                 <artifactId>eclipselink</artifactId>
220                 <version>${version.eclipselink}</version>
221             </dependency>
222
223             <!-- Java Servlet API -->
224             <dependency>
225                 <groupId>javax.servlet</groupId>
226                 <artifactId>javax.servlet-api</artifactId>
227                 <version>4.0.1</version>
228             </dependency>
229
230             <!-- HttpComponents Client -->
231             <dependency>
232                 <groupId>org.apache.httpcomponents</groupId>
233                 <artifactId>httpclient</artifactId>
234                 <version>4.5.12</version>
235             </dependency>
236
237             <!-- HttpComponents Core (blocking I/O) -->
238             <dependency>
239                 <groupId>org.apache.httpcomponents</groupId>
240                 <artifactId>httpcore</artifactId>
241                 <version>4.4.13</version>
242             </dependency>
243
244             <!-- JSON marshalling and unmarshalling -->
245             <dependency>
246                 <groupId>com.google.code.gson</groupId>
247                 <artifactId>gson</artifactId>
248                 <version>2.8.6</version>
249             </dependency>
250             <dependency>
251                 <groupId>org.json</groupId>
252                 <artifactId>json</artifactId>
253                 <version>20200518</version>
254             </dependency>
255
256             <!-- Lombok -->
257             <dependency>
258                 <groupId>org.projectlombok</groupId>
259                 <artifactId>lombok</artifactId>
260                 <version>1.18.12</version>
261             </dependency>
262
263             <!-- Logging -->
264             <dependency>
265                 <groupId>org.slf4j</groupId>
266                 <artifactId>slf4j-api</artifactId>
267                 <version>1.7.30</version>
268             </dependency>
269             <dependency>
270                 <groupId>org.slf4j</groupId>
271                 <artifactId>slf4j-ext</artifactId>
272                 <version>1.7.30</version>
273             </dependency>
274             <dependency>
275                 <groupId>ch.qos.logback</groupId>
276                 <artifactId>logback-core</artifactId>
277                 <version>${version.logback}</version>
278             </dependency>
279             <dependency>
280                 <groupId>ch.qos.logback</groupId>
281                 <artifactId>logback-classic</artifactId>
282                 <version>${version.logback}</version>
283             </dependency>
284
285             <!-- Dmaap Client -->
286             <dependency>
287                 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
288                 <artifactId>dmaapClient</artifactId>
289                 <version>${version.dmaap}</version>
290             </dependency>
291
292             <!-- Common Controller SDK -->
293             <dependency>
294                 <groupId>org.onap.ccsdk.cds.components</groupId>
295                 <artifactId>proto-definition</artifactId>
296                 <version>${version.ccsdk}</version>
297             </dependency>
298
299             <!-- AAF Client -->
300             <dependency>
301                 <groupId>org.onap.aaf.authz</groupId>
302                 <artifactId>aaf-cadi-aaf</artifactId>
303                 <version>2.1.21</version>
304                 <exclusions>
305                     <exclusion>
306                         <groupId>log4j</groupId>
307                         <artifactId>log4j</artifactId>
308                     </exclusion>
309                 </exclusions>
310             </dependency>
311
312             <!-- Client library for Cambria event routing API -->
313             <dependency>
314                 <groupId>com.att.nsa</groupId>
315                 <artifactId>cambriaClient</artifactId>
316                 <version>1.2.1-oss</version>
317             </dependency>
318             <dependency>
319                 <groupId>com.att.nsa</groupId>
320                 <artifactId>saClientLibrary</artifactId>
321                 <version>1.3.0-oss</version>
322             </dependency>
323
324             <!-- Commons CLI for command line parsing -->
325             <dependency>
326                 <groupId>commons-cli</groupId>
327                 <artifactId>commons-cli</artifactId>
328                 <version>1.4</version>
329             </dependency>
330
331             <!-- Web Sockets -->
332             <dependency>
333                 <groupId>org.java-websocket</groupId>
334                 <artifactId>Java-WebSocket</artifactId>
335                 <version>1.5.1</version>
336             </dependency>
337
338             <!-- SnakeYAML -->
339             <dependency>
340                 <groupId>org.yaml</groupId>
341                 <artifactId>snakeyaml</artifactId>
342                 <version>1.26</version>
343             </dependency>
344
345             <!-- Drools -->
346
347             <!--
348             Security Issues: 1 of 2
349             This dependency is trying to upgrade security fixes
350             identified. If it is removed or manipulated then please
351             fix the 2nd change as noted below.
352             -->
353
354             <dependency>
355                 <groupId>org.codehaus.plexus</groupId>
356                 <artifactId>plexus-utils</artifactId>
357                 <version>3.3.0</version>
358             </dependency>
359
360             <dependency>
361                 <groupId>org.kie</groupId>
362                 <artifactId>kie-api</artifactId>
363                 <version>${version.drools}</version>
364             </dependency>
365
366             <dependency>
367                 <groupId>org.kie</groupId>
368                 <artifactId>kie-ci</artifactId>
369                 <version>${version.drools}</version>
370
371                 <!--
372                 Issue: 2 of 2
373                 Excluding these 2 dependencies in order to force upgrade security fixes
374                 identified. As declared above. Any changes here should be reflected above
375                 and vice versa.
376                 -->
377
378                 <exclusions>
379                     <exclusion>
380                         <groupId>org.codehaus.plexus</groupId>
381                         <artifactId>plexus-utils</artifactId>
382                     </exclusion>
383                 </exclusions>
384             </dependency>
385
386             <dependency>
387                 <groupId>org.drools</groupId>
388                 <artifactId>drools-core</artifactId>
389                 <version>${version.drools}</version>
390             </dependency>
391
392             <dependency>
393                 <groupId>org.drools</groupId>
394                 <artifactId>drools-persistence-jpa</artifactId>
395                 <version>${version.drools}</version>
396             </dependency>
397
398             <dependency>
399                 <groupId>org.drools</groupId>
400                 <artifactId>drools-compiler</artifactId>
401                 <version>${version.drools}</version>
402             </dependency>
403
404             <dependency>
405                 <groupId>org.drools</groupId>
406                 <artifactId>drools-verifier-drl</artifactId>
407                 <version>${version.drools}</version>
408             </dependency>
409
410             <dependency>
411                 <groupId>org.drools</groupId>
412                 <artifactId>drools-verifier-api</artifactId>
413                 <version>${version.drools}</version>
414             </dependency>
415
416             <dependency>
417                 <groupId>org.drools</groupId>
418                 <artifactId>drools-verifier-core</artifactId>
419                 <version>${version.drools}</version>
420             </dependency>
421
422             <!-- Test dependencies -->
423
424             <!-- In memory Database Engine -->
425             <dependency>
426                 <groupId>com.h2database</groupId>
427                 <artifactId>h2</artifactId>
428                 <version>1.4.200</version>
429                 <scope>test</scope>
430             </dependency>
431
432             <!-- JUNIT -->
433             <dependency>
434                 <groupId>junit</groupId>
435                 <artifactId>junit</artifactId>
436                 <version>4.13</version>
437                 <scope>test</scope>
438             </dependency>
439
440             <!-- Cucumber Tests -->
441             <dependency>
442                 <groupId>io.cucumber</groupId>
443                 <artifactId>cucumber-java</artifactId>
444                 <version>6.1.2</version>
445                 <scope>test</scope>
446             </dependency>
447             <dependency>
448                 <groupId>io.cucumber</groupId>
449                 <artifactId>cucumber-junit</artifactId>
450                 <version>6.1.2</version>
451                 <scope>test</scope>
452             </dependency>
453
454             <!-- Exception testing -->
455             <dependency>
456                 <groupId>org.assertj</groupId>
457                 <artifactId>assertj-core</artifactId>
458                 <version>3.16.1</version>
459                 <scope>test</scope>
460             </dependency>
461
462             <!-- Mock libraries -->
463             <dependency>
464                 <groupId>com.openpojo</groupId>
465                 <artifactId>openpojo</artifactId>
466                 <version>0.8.13</version>
467                 <scope>test</scope>
468             </dependency>
469             <dependency>
470                 <groupId>org.mockito</groupId>
471                 <artifactId>mockito-all</artifactId>
472                 <version>1.10.19</version>
473                 <scope>test</scope>
474             </dependency>
475             <dependency>
476                 <groupId>org.powermock</groupId>
477                 <artifactId>powermock-core</artifactId>
478                 <version>${version.powermock}</version>
479                 <scope>test</scope>
480             </dependency>
481             <dependency>
482                 <groupId>org.powermock</groupId>
483                 <artifactId>powermock-api-mockito2</artifactId>
484                 <version>${version.powermock}</version>
485                 <scope>test</scope>
486             </dependency>
487             <dependency>
488                 <groupId>org.powermock</groupId>
489                 <artifactId>powermock-module-junit4</artifactId>
490                 <version>${version.powermock}</version>
491                 <scope>test</scope>
492             </dependency>
493             <dependency>
494                 <groupId>org.mockito</groupId>
495                 <artifactId>mockito-core</artifactId>
496                 <version>3.3.3</version>
497                 <scope>test</scope>
498             </dependency>
499
500             <!-- Awaitility -->
501             <dependency>
502                 <groupId>org.awaitility</groupId>
503                 <artifactId>awaitility</artifactId>
504                 <version>4.0.3</version>
505                 <scope>test</scope>
506             </dependency>
507
508             <!-- Netty -->
509             <dependency>
510                 <groupId>io.netty</groupId>
511                 <artifactId>netty-all</artifactId>
512                 <version>${version.netty}</version>
513             </dependency>
514             <dependency>
515                 <groupId>io.netty</groupId>
516                 <artifactId>netty-codec-http2</artifactId>
517                 <version>${version.netty}</version>
518             </dependency>
519             <dependency>
520                 <groupId>io.netty</groupId>
521                 <artifactId>netty-handler-proxy</artifactId>
522                 <version>${version.netty}</version>
523             </dependency>
524
525             <!-- Commons Lang -->
526             <dependency>
527                 <groupId>org.apache.commons</groupId>
528                 <artifactId>commons-lang3</artifactId>
529                 <version>3.10</version>
530             </dependency>
531
532             <!-- Commons IO -->
533             <dependency>
534                 <groupId>commons-io</groupId>
535                 <artifactId>commons-io</artifactId>
536                 <version>2.7</version>
537             </dependency>
538         </dependencies>
539
540     </dependencyManagement>
541
542
543     <scm>
544         <connection>scm:git:ssh://git.onap.org:29418/${project.groupId}</connection>
545         <developerConnection>scm:git:ssh://git.onap.org:29418/${project.groupId}</developerConnection>
546         <tag>HEAD</tag>
547         <url>https://wiki.onap.org/display/DW/Integration+Project</url>
548     </scm>
549
550     <build>
551         <pluginManagement>
552             <plugins>
553                 <plugin>
554                     <groupId>org.codehaus.mojo</groupId>
555                     <artifactId>versions-maven-plugin</artifactId>
556                     <version>2.7</version>
557                 </plugin>
558                 <plugin>
559                     <groupId>org.apache.maven.plugins</groupId>
560                     <artifactId>maven-dependency-plugin</artifactId>
561                     <version>3.1.1</version>
562                 </plugin>
563                 <plugin>
564                     <!-- THIS PLUGIN IS RETIRED -->
565                     <groupId>org.apache.maven.plugins</groupId>
566                     <artifactId>maven-reactor-plugin</artifactId>
567                     <version>1.1</version>
568                 </plugin>
569                 <plugin>
570                     <!-- THIS PLUGIN IS RETIRED -->
571                     <!-- Advise to use m2e -->
572                     <groupId>org.apache.maven.plugins</groupId>
573                     <artifactId>maven-eclipse-plugin</artifactId>
574                     <version>2.10</version>
575                 </plugin>
576                 <plugin>
577                     <groupId>org.apache.maven.plugins</groupId>
578                     <artifactId>maven-install-plugin</artifactId>
579                     <version>3.0.0-M1</version>
580                 </plugin>
581                 <plugin>
582                     <groupId>org.apache.maven.plugins</groupId>
583                     <artifactId>maven-resources-plugin</artifactId>
584                     <version>3.1.0</version>
585                 </plugin>
586                 <plugin>
587                     <groupId>org.apache.maven.plugins</groupId>
588                     <artifactId>maven-source-plugin</artifactId>
589                     <version>3.2.0</version>
590                 </plugin>
591                 <plugin>
592                     <groupId>org.apache.maven.plugins</groupId>
593                     <artifactId>maven-release-plugin</artifactId>
594                     <version>2.5.3</version>
595                 </plugin>
596                 <plugin>
597                     <groupId>org.apache.maven.plugins</groupId>
598                     <artifactId>maven-assembly-plugin</artifactId>
599                     <version>3.2.0</version>
600                 </plugin>
601                 <plugin>
602                     <groupId>org.apache.maven.plugins</groupId>
603                     <artifactId>maven-jar-plugin</artifactId>
604                     <version>3.2.0</version>
605                 </plugin>
606                 <plugin>
607                     <groupId>org.apache.maven.plugins</groupId>
608                     <artifactId>maven-javadoc-plugin</artifactId>
609                     <version>3.1.1</version>
610                 </plugin>
611                 <plugin>
612                     <groupId>org.apache.maven.plugins</groupId>
613                     <artifactId>maven-shade-plugin</artifactId>
614                     <version>3.2.1</version>
615                 </plugin>
616                 <plugin>
617                     <groupId>org.apache.maven.plugins</groupId>
618                     <artifactId>maven-archetype-plugin</artifactId>
619                     <version>3.1.2</version>
620                 </plugin>
621                 <plugin>
622                     <groupId>org.apache.maven.archetype</groupId>
623                     <artifactId>archetype-packaging</artifactId>
624                     <version>3.1.2</version>
625                 </plugin>
626                 <plugin>
627                     <groupId>com.coderplus.maven.plugins</groupId>
628                     <artifactId>copy-rename-maven-plugin</artifactId>
629                     <version>1.0.1</version>
630                 </plugin>
631                 <plugin>
632                     <groupId>org.apache.maven.plugins</groupId>
633                     <artifactId>maven-compiler-plugin</artifactId>
634                     <version>3.8.1</version>
635                     <configuration>
636                         <encoding>${project.build.sourceEncoding}</encoding>
637                         <release>${java.version}</release>
638                     </configuration>
639                 </plugin>
640                 <plugin>
641                     <groupId>org.codehaus.mojo</groupId>
642                     <artifactId>exec-maven-plugin</artifactId>
643                     <version>1.6.0</version>
644                 </plugin>
645                 <plugin>
646                     <groupId>org.apache.maven.plugins</groupId>
647                     <artifactId>maven-war-plugin</artifactId>
648                     <version>3.2.3</version>
649                 </plugin>
650                 <plugin>
651                     <groupId>io.fabric8</groupId>
652                     <artifactId>docker-maven-plugin</artifactId>
653                     <version>0.31.0</version>
654                 </plugin>
655                 <plugin>
656                     <groupId>org.kie</groupId>
657                     <artifactId>kie-maven-plugin</artifactId>
658                     <version>${version.drools}</version>
659                     <extensions>true</extensions>
660                 </plugin>
661             </plugins>
662         </pluginManagement>
663
664         <plugins>
665             <plugin>
666                 <groupId>org.apache.maven.plugins</groupId>
667                 <artifactId>maven-compiler-plugin</artifactId>
668                 <configuration>
669                     <encoding>${project.build.sourceEncoding}</encoding>
670                     <source>${java.version}</source>
671                     <target>${java.version}</target>
672                 </configuration>
673             </plugin>
674             <plugin>
675                 <groupId>org.jacoco</groupId>
676                 <artifactId>jacoco-maven-plugin</artifactId>
677                 <executions>
678                     <execution>
679                         <id>pre-unit-test</id>
680                         <goals>
681                             <goal>prepare-agent</goal>
682                         </goals>
683                         <configuration>
684                             <destFile>${jacoco.dataFile}</destFile>
685                             <append>true</append>
686                         </configuration>
687                     </execution>
688                     <execution>
689                         <id>post-unit-test</id>
690                         <phase>test</phase>
691                         <goals>
692                             <goal>report</goal>
693                         </goals>
694                         <configuration>
695                             <dataFile>${jacoco.dataFile}</dataFile>
696                         </configuration>
697                     </execution>
698                     <execution>
699                       <id>pre-integration-test</id>
700                       <phase>pre-integration-test</phase>
701                       <goals>
702                         <goal>prepare-agent</goal>
703                       </goals>
704                       <configuration>
705                         <skip>true</skip>
706                       </configuration>
707                     </execution>
708                     <execution>
709                       <id>post-integration-test</id>
710                       <phase>post-integration-test</phase>
711                       <goals>
712                         <goal>report</goal>
713                       </goals>
714                       <configuration>
715                         <skip>true</skip>
716                       </configuration>
717                     </execution>
718                     <execution>
719                       <id>report-aggregate</id>
720                       <phase>prepare-package</phase>
721                       <goals>
722                         <goal>report-aggregate</goal>
723                       </goals>
724                     </execution>
725                 </executions>
726             </plugin>
727             <plugin>
728                 <artifactId>maven-checkstyle-plugin</artifactId>
729                 <executions>
730                     <execution>
731                         <id>onap-license</id>
732                         <goals>
733                             <goal>check</goal>
734                         </goals>
735                         <phase>process-sources</phase>
736                         <configuration>
737                             <configLocation>onap-checkstyle/check-license.xml</configLocation>
738                             <includeResources>false</includeResources>
739                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
740                             <includeTestResources>false</includeTestResources>
741                             <sourceDirectories>
742                                 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
743                             </sourceDirectories>
744                             <consoleOutput>true</consoleOutput>
745                             <failOnViolation>true</failOnViolation>
746                             <violationSeverity>warning</violationSeverity>
747                         </configuration>
748                     </execution>
749                     <execution>
750                         <id>onap-java-style</id>
751                         <goals>
752                             <goal>check</goal>
753                         </goals>
754                         <phase>process-sources</phase>
755                         <configuration>
756                             <!-- Use Google Java Style Guide:
757                               https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
758                               with minor changes -->
759                             <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
760                             <!-- <sourceDirectory> is needed so that checkstyle ignores the generated
761                                 sources directory -->
762                             <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
763                             <includeResources>true</includeResources>
764                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
765                             <includeTestResources>true</includeTestResources>
766                             <excludes>
767                             </excludes>
768                             <consoleOutput>true</consoleOutput>
769                             <failOnViolation>true</failOnViolation>
770                             <violationSeverity>warning</violationSeverity>
771                         </configuration>
772                     </execution>
773                 </executions>
774                 <dependencies>
775                     <dependency>
776                         <groupId>org.onap.oparent</groupId>
777                         <artifactId>checkstyle</artifactId>
778                         <version>${oparent.version}</version>
779                         <scope>compile</scope>
780                     </dependency>
781                 </dependencies>
782             </plugin>
783         </plugins>
784     </build>
785 </project>