Update model-loader to spring-boot 2.4
[aai/model-loader.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3     ============LICENSE_START=======================================================
4     org.onap.aai
5     ================================================================================
6     Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
7     Copyright © 2017-2018 European Software Marketing Ltd.
8     ================================================================================
9     Licensed under the Apache License, Version 2.0 (the "License");
10     you may not use this file except in compliance with the License.
11     You may obtain a copy of the License at
12
13           http://www.apache.org/licenses/LICENSE-2.0
14
15     Unless required by applicable law or agreed to in writing, software
16     distributed under the License is distributed on an "AS IS" BASIS,
17     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18     See the License for the specific language governing permissions and
19     limitations under the License.
20     ============LICENSE_END=========================================================
21 -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23                  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24         <modelVersion>4.0.0</modelVersion>
25
26         <parent>
27                 <groupId>org.onap.oparent</groupId>
28                 <artifactId>oparent</artifactId>
29                 <version>2.1.0</version>
30                 <relativePath />
31         </parent>
32
33         <groupId>org.onap.aai.model-loader</groupId>
34         <artifactId>model-loader</artifactId>
35         <name>aai-model-loader</name>
36         <version>1.13.5-SNAPSHOT</version>
37
38         <dependencyManagement>
39                 <dependencies>
40                         <dependency>
41                                 <groupId>org.springframework.boot</groupId>
42                                 <artifactId>spring-boot-dependencies</artifactId>
43                                 <version>${spring-boot.version}</version>
44                                 <type>pom</type>
45                                 <scope>import</scope>
46                         </dependency>
47                 </dependencies>
48         </dependencyManagement>
49
50         <properties>
51                 <start-class>org.onap.aai.modelloader.service.ModelLoaderApplication</start-class>
52                 <nexusproxy>https://nexus.onap.org</nexusproxy>
53                 <docker.location>${basedir}/target</docker.location>
54                 <spring-boot.version>2.4.13</spring-boot.version>
55                 <apache.commons-text.version>1.10.0</apache.commons-text.version>
56                 <commons-compress.version>1.22</commons-compress.version>
57                 <hamcrest-all.version>1.3</hamcrest-all.version>
58                 <babel.version>1.9.5</babel.version>
59                 <aai.rest.client.version>1.2.1</aai.rest.client.version>
60                 <sdc-distribution-client.version>2.0.0</sdc-distribution-client.version>
61                 <logback.version>1.2.11</logback.version>
62                 <!-- docker related properties -->
63                 <docker.fabric.version>0.39.0</docker.fabric.version>
64                 <aai.docker.version>1.0.0</aai.docker.version>
65                 <aai.build.directory>${project.build.directory}/${project.artifactId}-${project.version}-build/</aai.build.directory>
66                 <aai.docker.namespace>onap</aai.docker.namespace>
67                 <aai.base.image>alpine</aai.base.image>
68                 <aai.base.image.version>1.13.2</aai.base.image.version>
69                 <!-- This will be used for the docker images as the default format of maven build has issues -->
70                 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
71
72                 <sonar.jacoco.reportPath />
73                 <sonar.jacoco.itReportPath />
74                 <sonar.jacoco.reportMissing.force.zero />
75
76                 <jacoco.line.coverage.limit>0.75</jacoco.line.coverage.limit>
77                 <jacoco.version>0.8.5</jacoco.version>
78                 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
79                 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
80                 <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
81                 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
82
83                 <sonar.scanner.version>3.7.0.1746</sonar.scanner.version>
84
85                 <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
86                 <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
87                 <maven-compiler-plugin.source>11</maven-compiler-plugin.source>
88                 <maven-compiler-plugin.target>11</maven-compiler-plugin.target>
89                 <maven-compiler-plugin.test.source>11</maven-compiler-plugin.test.source>
90                 <maven-compiler-plugin.test.target>11</maven-compiler-plugin.test.target>
91         </properties>
92
93         <distributionManagement>
94                 <repository>
95                         <id>ecomp-releases</id>
96                         <name>ECOMP Release Repository</name>
97                         <url>${nexusproxy}/content/repositories/releases/</url>
98                 </repository>
99                 <snapshotRepository>
100                         <id>ecomp-snapshots</id>
101                         <name>ECOMP Snapshot Repository</name>
102                         <url>${nexusproxy}/content/repositories/snapshots/</url>
103                 </snapshotRepository>
104         </distributionManagement>
105
106         <profiles>
107                 <!-- Docker profile to be used for building docker image and pushing to nexus -->
108                 <profile>
109                         <id>docker</id>
110                         <build>
111                                 <plugins>
112                                         <plugin>
113                                                 <groupId>org.codehaus.mojo</groupId>
114                                                 <artifactId>build-helper-maven-plugin</artifactId>
115                                                 <version>3.0.0</version>
116                                                 <executions>
117                                                         <execution>
118                                                                 <phase>pre-clean</phase>
119                                                                 <id>parse-version</id>
120                                                                 <goals>
121                                                                         <goal>parse-version</goal>
122                                                                 </goals>
123                                                         </execution>
124                                                 </executions>
125                                         </plugin>
126                                         <plugin>
127                                                 <groupId>org.codehaus.groovy.maven</groupId>
128                                                 <artifactId>gmaven-plugin</artifactId>
129                                                 <version>1.0</version>
130                                                 <executions>
131                                                         <execution>
132                                                                 <phase>pre-clean</phase>
133                                                                 <goals>
134                                                                         <goal>execute</goal>
135                                                                 </goals>
136                                                                 <configuration>
137                                                                         <source>
138                                                                                 def userAaiBaseImage = session.userProperties['aai.base.image'];
139                                                                                 def userAaiCommonVersion = session.userProperties['aai.base.image.version'];
140                                                                                 if (userAaiCommonVersion != null) {
141                                                                                         project.properties['aai.base.image.version'] = userAaiCommonVersion;
142                                                                                 }
143                                                                                 if (userAaiBaseImage != null) {
144                                                                                         project.properties['aai.base.image'] = userAaiBaseImage;
145                                                                                 }
146                                                                                 log.info 'Base image flavour: ' + project.properties['aai.base.image'];
147                                                                                 log.info 'Base image version: ' + project.properties['aai.base.image.version'];
148                                                                         </source>
149                                                                 </configuration>
150                                                         </execution>
151                                                 </executions>
152                                         </plugin>
153                                         <plugin>
154                                                 <groupId>io.fabric8</groupId>
155                                                 <artifactId>docker-maven-plugin</artifactId>
156                                                 <version>${docker.fabric.version}</version>
157                                                 <configuration>
158                                                         <verbose>true</verbose>
159                                                         <apiVersion>1.23</apiVersion>
160                                                         <images>
161                                                                 <image>
162                                                                         <name>${docker.push.registry}/${aai.docker.namespace}/${project.artifactId}:%l</name>
163                                                                         <build>
164                                                                                 <filter>@</filter>
165                                                                                 <tags>
166                                                                                         <tag>latest</tag>
167                                                                                         <tag>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest</tag>
168                                                                                         <tag>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-${maven.build.timestamp}</tag>
169                                                                                 </tags>
170                                                                                 <cleanup>try</cleanup>
171                                                                                 <dockerFileDir>${project.basedir}/src/main/docker</dockerFileDir>
172                                                                                 <assembly>
173                                                                                         <inline>
174                                                                                                 <fileSets>
175                                                                                                         <fileSet>
176                                                                                                                 <directory>${aai.build.directory}</directory>
177                                                                                                                 <outputDirectory>/${project.artifactId}</outputDirectory>
178                                                                                                         </fileSet>
179                                                                                                 </fileSets>
180                                                                                         </inline>
181                                                                                 </assembly>
182                                                                         </build>
183                                                                 </image>
184                                                         </images>
185                                                 </configuration>
186                                                 <executions>
187                                                         <execution>
188                                                                 <id>clean-images</id>
189                                                                 <phase>pre-clean</phase>
190                                                                 <goals>
191                                                                         <goal>remove</goal>
192                                                                 </goals>
193                                                                 <configuration>
194                                                                         <removeAll>true</removeAll>
195                                                                 </configuration>
196                                                         </execution>
197                                                         <execution>
198                                                                 <id>generate-images</id>
199                                                                 <phase>package</phase>
200                                                                 <goals>
201                                                                         <goal>build</goal>
202                                                                 </goals>
203                                                         </execution>
204                                                         <execution>
205                                                                 <id>push-images</id>
206                                                                 <phase>deploy</phase>
207                                                                 <goals>
208                                                                         <goal>push</goal>
209                                                                 </goals>
210                                                         </execution>
211                                                 </executions>
212                                         </plugin>
213                                 </plugins>
214                         </build>
215                 </profile>
216         </profiles>
217         <dependencies>
218                 <dependency>
219                         <groupId>org.springframework.boot</groupId>
220                         <artifactId>spring-boot-starter-jetty</artifactId>
221                 </dependency>
222                 <dependency>
223                         <groupId>org.springframework.boot</groupId>
224                         <artifactId>spring-boot-starter-web</artifactId>
225                         <exclusions>
226                                 <exclusion>
227                                         <groupId>org.springframework.boot</groupId>
228                                         <artifactId>spring-boot-starter-tomcat</artifactId>
229                                 </exclusion>
230                         </exclusions>
231                 </dependency>
232                 <dependency>
233                         <groupId>org.apache.kafka</groupId>
234                         <artifactId>kafka-clients</artifactId>
235                         <version>3.3.1</version>
236                 </dependency>
237                 <dependency>
238                         <groupId>org.onap.aai</groupId>
239                         <artifactId>babel</artifactId>
240                         <version>${babel.version}</version>
241                         <classifier>client</classifier>
242                         <exclusions>
243                                 <exclusion>
244                                         <groupId>*</groupId>
245                                         <artifactId>*</artifactId>
246                                 </exclusion>
247                         </exclusions>
248                 </dependency>
249                 <dependency>
250                         <groupId>org.glassfish.jersey.core</groupId>
251                         <artifactId>jersey-common</artifactId>
252                         <scope>test</scope>
253                 </dependency>
254                 <dependency>
255                         <groupId>org.onap.aai</groupId>
256                         <artifactId>rest-client</artifactId>
257                         <version>${aai.rest.client.version}</version>
258                 </dependency>
259                 <dependency>
260                         <groupId>com.google.code.gson</groupId>
261                         <artifactId>gson</artifactId>
262                 </dependency>
263
264                 <!-- Test dependencies -->
265                 <!-- https://mvnrepository.com/artifact/com.mikesamuel/json-sanitizer -->
266                 <dependency>
267                         <groupId>com.mikesamuel</groupId>
268                         <artifactId>json-sanitizer</artifactId>
269                         <version>1.2.0</version>
270                 </dependency>
271
272                 <!-- Common logging framework -->
273                 <dependency>
274                         <groupId>org.onap.aai.logging-service</groupId>
275                         <artifactId>common-logging</artifactId>
276                         <version>1.5.0</version>
277                 </dependency>
278                 <dependency>
279                         <groupId>ch.qos.logback</groupId>
280                         <artifactId>logback-classic</artifactId>
281                         <version>${logback.version}</version>
282                         <!--$NO-MVN-MAN-VER$ -->
283                 </dependency>
284                 <dependency>
285                         <groupId>ch.qos.logback</groupId>
286                         <artifactId>logback-core</artifactId>
287                         <version>${logback.version}</version>
288                         <!--$NO-MVN-MAN-VER$ -->
289                 </dependency>
290                 <dependency>
291                         <groupId>org.onap.sdc.sdc-distribution-client</groupId>
292                         <artifactId>sdc-distribution-client</artifactId>
293                         <version>${sdc-distribution-client.version}</version>
294                 </dependency>
295                 <dependency>
296                         <groupId>org.json</groupId>
297                         <artifactId>json</artifactId>
298                         <version>20131018</version>
299                         <!--$NO-MVN-MAN-VER$ -->
300                 </dependency>
301                 <dependency>
302                         <groupId>org.eclipse.jetty</groupId>
303                         <artifactId>jetty-security</artifactId>
304                 </dependency>
305                 <dependency>
306                         <groupId>jline</groupId>
307                         <artifactId>jline</artifactId>
308                         <version>2.12.1</version>
309                 </dependency>
310                 <dependency>
311                         <groupId>org.apache.commons</groupId>
312                         <artifactId>commons-compress</artifactId>
313                         <version>${commons-compress.version}</version>
314                 </dependency>
315                 <dependency>
316                         <groupId>commons-io</groupId>
317                         <artifactId>commons-io</artifactId>
318                         <version>2.11.0</version>
319                 </dependency>
320                 <dependency>
321                         <groupId>org.apache.commons</groupId>
322                         <artifactId>commons-text</artifactId>
323                         <version>${apache.commons-text.version}</version>
324                 </dependency>
325
326                 <!-- Test dependencies -->
327                 <dependency>
328                         <groupId>org.hamcrest</groupId>
329                         <artifactId>hamcrest-all</artifactId>
330                         <version>${hamcrest-all.version}</version>
331                         <scope>test</scope>
332                 </dependency>
333                 <dependency>
334                         <groupId>org.junit.jupiter</groupId>
335                         <artifactId>junit-jupiter</artifactId>
336                         <scope>test</scope>
337                 </dependency>
338                 <dependency>
339                         <groupId>org.junit.jupiter</groupId>
340                         <artifactId>junit-jupiter-api</artifactId>
341                         <scope>test</scope>
342                 </dependency>
343                 <dependency>
344                         <groupId>org.mockito</groupId>
345                         <artifactId>mockito-core</artifactId>
346                         <scope>test</scope>
347                 </dependency>
348                 <dependency>
349                         <groupId>org.springframework.boot</groupId>
350                         <artifactId>spring-boot-starter-test</artifactId>
351                         <scope>test</scope>
352                 </dependency>
353         </dependencies>
354
355         <!-- Plugins and repositories -->
356         <pluginRepositories>
357                 <pluginRepository>
358                         <id>central</id>
359                         <url>https://repo1.maven.org/maven2</url>
360                 </pluginRepository>
361                 <pluginRepository>
362                         <id>EvoSuite</id>
363                         <name>EvoSuite Repository</name>
364                         <url>https://www.evosuite.org/m2</url>
365                 </pluginRepository>
366         </pluginRepositories>
367
368         <repositories>
369                 <repository>
370                         <id>central</id>
371                         <name>Maven 2 repository 2</name>
372                         <url>https://repo2.maven.org/maven2/</url>
373                 </repository>
374                 <repository>
375                         <id>ecomp-releases</id>
376                         <name>ECOMP Release Repository</name>
377                         <url>${nexusproxy}/content/repositories/releases/</url>
378                 </repository>
379                 <repository>
380                         <id>ecomp-snapshots</id>
381                         <name>ECOMP Snapshot Repository</name>
382                         <url>${nexusproxy}/content/repositories/snapshots/</url>
383                 </repository>
384                 <repository>
385                         <id>ecomp-staging</id>
386                         <name>ECOMP Staging Repository</name>
387                         <url>${nexusproxy}/content/repositories/staging/</url>
388                 </repository>
389         </repositories>
390
391         <build>
392                 <plugins>
393                         <plugin>
394                                 <groupId>org.apache.maven.plugins</groupId>
395                                 <artifactId>maven-compiler-plugin</artifactId>
396                                 <version>${maven-compiler-plugin.version}</version>
397                                 <inherited>true</inherited>
398                                 <configuration>
399                                         <source>${maven-compiler-plugin.source}</source>
400                                         <target>${maven-compiler-plugin.target}</target>
401                                         <testSource>${maven-compiler-plugin.test.source}</testSource>
402                                         <testTarget>${maven-compiler-plugin.test.target}</testTarget>
403                                 </configuration>
404                         </plugin>
405                         <plugin>
406                                 <groupId>org.springframework.boot</groupId>
407                                 <artifactId>spring-boot-maven-plugin</artifactId>
408                                 <version>${spring-boot.version}</version>
409                                 <configuration>
410                                         <executable>true</executable>
411                                 </configuration>
412                                 <executions>
413                                         <execution>
414                                                 <goals>
415                                                         <goal>repackage</goal>
416                                                 </goals>
417                                         </execution>
418                                 </executions>
419                         </plugin>
420                         <plugin>
421                                 <groupId>com.mycila</groupId>
422                                 <artifactId>license-maven-plugin</artifactId>
423                                 <version>3.0</version>
424                                 <configuration>
425                                         <header>License.txt</header>
426                                         <includes>
427                                                 <include>src/main/java/**</include>
428                                                 <include>src/test/java/**</include>
429                                                 <include>version/properties</include>
430                                                 <include>pom.xml</include>
431                                         </includes>
432                                         <skipExistingHeaders>true</skipExistingHeaders>
433                                 </configuration>
434                                 <executions>
435                                         <execution>
436                                                 <goals>
437                                                         <!-- Set goal to "format" to auto update license headers -->
438                                                         <goal>check</goal>
439                                                 </goals>
440                                                 <phase>process-sources</phase>
441                                         </execution>
442                                 </executions>
443                         </plugin>
444                         <plugin>
445                                 <groupId>org.apache.maven.plugins</groupId>
446                                 <artifactId>maven-deploy-plugin</artifactId>
447                                 <configuration>
448                                         <classifier>client</classifier>
449                                 </configuration>
450                         </plugin>
451                         <plugin>
452                                 <artifactId>maven-assembly-plugin</artifactId>
453                                 <configuration>
454                                         <descriptors>
455                                                 <descriptor>src/main/assembly/descriptor.xml</descriptor>
456                                         </descriptors>
457                                 </configuration>
458                                 <executions>
459                                         <execution>
460                                                 <id>make-assembly</id>
461                                                 <phase>package</phase>
462                                                 <goals>
463                                                         <goal>single</goal>
464                                                 </goals>
465                                         </execution>
466                                 </executions>
467                         </plugin>
468
469                         <!-- once we connect aai-parent or oparent 3.0+ we can take out this
470                              whole section -->
471
472                         <plugin>
473                                 <groupId>org.jacoco</groupId>
474                                 <artifactId>jacoco-maven-plugin</artifactId>
475                                 <version>${jacoco.version}</version>
476                                 <configuration>
477                                         <!-- Note: This exclusion list should match <sonar.exclusions> property
478                      above -->
479                                         <excludes>
480                                                 <exclude>**/gen/**</exclude>
481                                                 <exclude>**/generated-sources/**</exclude>
482                                                 <exclude>**/yang-gen/**</exclude>
483                                                 <exclude>**/pax/**</exclude>
484                                         </excludes>
485                                 </configuration>
486                                 <executions>
487                                         <!-- Prepares the property pointing to the JaCoCo runtime agent which
488                      is passed as VM argument when Maven the Surefire plugin is executed. -->
489                                         <execution>
490                                                 <id>pre-unit-test</id>
491                                                 <goals>
492                                                         <goal>prepare-agent</goal>
493                                                 </goals>
494                                                 <configuration>
495                                                         <!-- Sets the path to the file which contains the execution data
496                                  . -->
497                                                         <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
498                                                         <!-- Sets the name of the property containing the settings for JaCoCo
499                                  runtime agent. -->
500                                                         <propertyName>surefireArgLine</propertyName>
501                                                 </configuration>
502                                         </execution>
503                                         <!-- Ensures that the code coverage report for unit tests is created
504                      after unit tests have been run. -->
505                                         <execution>
506                                                 <id>post-unit-test</id>
507                                                 <phase>test</phase>
508                                                 <goals>
509                                                         <goal>report</goal>
510                                                 </goals>
511                                                 <configuration>
512                                                         <!-- Sets the path to the file which contains the execution data
513                                  . -->
514                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
515                                                         <!-- Sets the output directory for the code coverage report. -->
516                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
517                                                 </configuration>
518                                         </execution>
519                                         <execution>
520                                                 <id>pre-integration-test</id>
521                                                 <phase>pre-integration-test</phase>
522                                                 <goals>
523                                                         <goal>prepare-agent</goal>
524                                                 </goals>
525                                                 <configuration>
526                                                         <!-- Sets the path to the file which contains the execution data
527                                  . -->
528                                                         <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
529                                                         <!-- Sets the name of the property containing the settings for JaCoCo
530                                  runtime agent. -->
531                                                         <propertyName>failsafeArgLine</propertyName>
532                                                 </configuration>
533                                         </execution>
534                                         <!-- Ensures that the code coverage report for integration tests after
535                      integration tests have been run. -->
536                                         <execution>
537                                                 <id>post-integration-test</id>
538                                                 <phase>post-integration-test</phase>
539                                                 <goals>
540                                                         <goal>report</goal>
541                                                 </goals>
542                                                 <configuration>
543                                                         <!-- Sets the path to the file which contains the execution data
544                                  . -->
545                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
546                                                         <!-- Sets the output directory for the code coverage report. -->
547                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
548                                                 </configuration>
549                                         </execution>
550                                         <execution>
551                                                 <id>default-check</id>
552                                                 <goals>
553                                                         <goal>check</goal>
554                                                 </goals>
555                                                 <configuration>
556                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
557                                                         <rules>
558                                                                 <rule implementation="org.jacoco.maven.RuleConfiguration">
559                                                                         <element>BUNDLE</element>
560                                                                         <limits>
561                                                                                 <limit implementation="org.jacoco.report.check.Limit">
562                                                                                         <counter>LINE</counter>
563                                                                                         <value>COVEREDRATIO</value>
564                                                                                         <minimum>${jacoco.line.coverage.limit}</minimum>
565                                                                                 </limit>
566                                                                         </limits>
567                                                                 </rule>
568                                                         </rules>
569                                                 </configuration>
570                                         </execution>
571                                 </executions>
572                         </plugin>
573                         <plugin>
574                                 <groupId>org.apache.maven.plugins</groupId>
575                                 <artifactId>maven-surefire-plugin</artifactId>
576                                 <version>3.0.0-M4</version>
577                                 <configuration>
578                                         <!-- Sets the VM argument line used when unit tests are run. -->
579                                         <argLine>${surefireArgLine}</argLine>
580                                         <!-- Excludes integration tests when unit tests are run. -->
581                                         <excludes>
582                                                 <exclude>**/IT*.java</exclude>
583                                         </excludes>
584                                 </configuration>
585                         </plugin>
586                         <plugin>
587                                 <groupId>org.apache.maven.plugins</groupId>
588                                 <artifactId>maven-failsafe-plugin</artifactId>
589                                 <version>3.0.0-M4</version>
590                                 <executions>
591                                         <!-- Ensures that both integration-test and verify goals of the Failsafe
592                      Maven plugin are executed. -->
593                                         <execution>
594                                                 <id>integration-tests</id>
595                                                 <goals>
596                                                         <goal>integration-test</goal>
597                                                         <goal>verify</goal>
598                                                 </goals>
599                                                 <configuration>
600                                                         <!-- Sets the VM argument line used when integration tests are run. -->
601                                                         <argLine>${failsafeArgLine}</argLine>
602                                                 </configuration>
603                                         </execution>
604                                 </executions>
605                         </plugin>
606                         <plugin>
607                                 <groupId>org.sonarsource.scanner.maven</groupId>
608                                 <artifactId>sonar-maven-plugin</artifactId>
609                                 <version>${sonar.scanner.version}</version>
610                         </plugin>
611                         <!-- end removable sonar config -->
612
613
614
615                 </plugins>
616         </build>
617 </project>