Remove useless dep
[clamp.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP CLAMP
5   ================================================================================
6   Copyright (C) 2017-2019 AT&T Intellectual Property. All rights
7                               reserved.
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 -->
23 <project xmlns="http://maven.apache.org/POM/4.0.0"
24         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         <groupId>org.onap.clamp</groupId>
28         <artifactId>clds</artifactId>
29         <version>5.1.0-SNAPSHOT</version>
30         <name>clamp</name>
31
32
33         <parent>
34                 <groupId>org.onap.oparent</groupId>
35                 <artifactId>oparent</artifactId>
36                 <version>2.1.0</version>
37         </parent>
38
39         <description>
40                This is the MAVEN project that builds everything for ONAP CLAMP.
41                Docker engine is normally requires to perfom all possible tasks (including integration tests)
42
43            It can build:
44            - The ONAP CLAMP JAR that contains CLAMP back-end code.
45            - The DOCKER images for:
46                 * CLAMP backend (Java Spring)
47                 * CLAMP frontend (Javscript React)
48
49            It can test:
50             - The CLAMP backend, JAVA unit testing
51             - The CLAMP backend, JAVA integration tests (with Spring + docker mariadb database + docker policy/dcae emulator written in python)
52             - The CLAMP frontend, Javascrip tests (NodeJS(NPM) + JEST + Enzyme fro React)
53
54            The test coverage for dev's can be found after a "clean install" build in:
55             - Clamp backend: target/jacoco-dev.exec (unit tests + integration tests merged)
56                 or separately target/coverage-reports/jacoco.exec and target/coverage-reports/jacoco-it.exec
57             - Clamp frontend: target/ui-react/coverage
58
59            Useful mvn commands:
60             - mvn clean install: Build Clamp backend JAR + unit tests + integration tests + NPM tests (+coverage for all)
61             - mvn clean install -DskipITs=true: Build Clamp backend JAR + unit tests + NPM tests (+coverage for all), it does not require a DOCKER engine
62             - mvn clean install -DskipTests -P docker: Build Clamp backend JAR + all docker images
63
64            To start CLAMP (Build it before):
65             - Use docker-compose file in ./extra/docker/clamp/docker-compose.yml
66             - Use the script located in ./extra/bin/start-backend.sh + start-frontend.sh
67             - Use your IDE to use the Jar or start NVM/NPM
68
69         </description>
70
71         <properties>
72                 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
73                 <clamp.project.version>${project.version}</clamp.project.version>
74                 <clamp.build.timestamp>${maven.build.timestamp}</clamp.build.timestamp>
75                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
76                 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
77
78                 <eelf.core.version>1.0.0</eelf.core.version>
79                 <camel.version>2.25.2</camel.version>
80                 <springboot.version>2.2.9.RELEASE</springboot.version>
81
82                 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
83                 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
84                 <sonar.coverage.jacoco.xmlReportPaths>${project.build.directory}/jacoco-html-xml-reports/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
85                 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
86                 <sonar.projectVersion>${project.version}</sonar.projectVersion>
87                 <sonar.log.level>DEBUG</sonar.log.level>
88                 <sonar.nodejs.executable>${project.build.directory}/${ui.react.src}/node/node</sonar.nodejs.executable>
89                 <sonar.verbose>true</sonar.verbose>
90                 <sonar.sources>src/main,${project.build.directory}/${ui.react.src}/src</sonar.sources>
91                 <sonar.exclusions>src/main/resources/**</sonar.exclusions>
92                 <sonar.scm.exclusions.disabled>true</sonar.scm.exclusions.disabled>
93                 <sonar.javascript.lcov.reportPaths>${project.build.directory}/${ui.react.src}/coverage/lcov.info</sonar.javascript.lcov.reportPaths>
94                 <sonar.coverage.exclusions>src/main/resources/**,target/ui-react/src/**/*.test.js,target/ui-react/src/setupTests.js</sonar.coverage.exclusions>
95                 <docker.push.registry>localhost:5000</docker.push.registry>
96                 <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>
97                 <docker.skip.build>true</docker.skip.build>
98                 <docker.skip.push>true</docker.skip.push>
99                 <docker.skip.tag>true</docker.skip.tag>
100                 <skip.staging.artifacts>false</skip.staging.artifacts>
101                 <python.http.proxy.param />
102                 <tomcat.version>9.0.37</tomcat.version>
103                 <ui.react.src>ui-react</ui.react.src>
104                 <ui.react.lib.src>ui-react-lib</ui.react.lib.src>
105                 <npm.publish.url>https://nexus3.onap.org/repository/npm.snapshot/</npm.publish.url>
106         </properties>
107
108         <profiles>
109                 <!-- BEGIN: NOT USABLE profiles, those are defined when specific flags are enabled -->
110                 <profile>
111                         <id>without-test</id>
112                         <activation>
113                                 <property>
114                                         <name>maven.test.skip</name>
115                                         <value>true</value>
116                                 </property>
117                         </activation>
118                         <properties>
119                                 <docker.skip.run>true</docker.skip.run>
120                                 <docker.skip>true</docker.skip>
121                         </properties>
122                 </profile>
123                 <profile>
124                         <id>without-IT-only</id>
125                         <activation>
126                                 <property>
127                                         <name>skipITs</name>
128                                         <value>true</value>
129                                 </property>
130                         </activation>
131                         <properties>
132                                 <docker.skip.run>true</docker.skip.run>
133                                 <docker.skip>true</docker.skip>
134                         </properties>
135                 </profile>
136                 <profile>
137                         <id>without-IT-only2</id>
138                         <activation>
139                                 <property>
140                                         <name>skipTests</name>
141                                         <value>true</value>
142                                 </property>
143                         </activation>
144                         <properties>
145                                 <docker.skip.run>true</docker.skip.run>
146                                 <docker.skip>true</docker.skip>
147                         </properties>
148                 </profile>
149                 <!-- END: NOT USABLE profiles, those are defined when specific flags are enabled -->
150                 <profile>
151                         <id>docker</id>
152                         <properties>
153                                 <skip.staging.artifacts>true</skip.staging.artifacts>
154                                 <docker.skip.build>false</docker.skip.build>
155                                 <docker.skip.tag>false</docker.skip.tag>
156                                 <docker.skip.push>false</docker.skip.push>
157                                 <docker.skip>false</docker.skip>
158                         </properties>
159                 </profile>
160         </profiles>
161
162         <distributionManagement>
163                 <repository>
164                         <id>ecomp-releases</id>
165                         <name>Clamp Release Repository</name>
166                         <url>https://nexus.onap.org/content/repositories/releases/</url>
167                 </repository>
168                 <snapshotRepository>
169                         <id>ecomp-snapshots</id>
170                         <name>Clamp Snapshot Repository</name>
171                         <url>https://nexus.onap.org/content/repositories/snapshots/</url>
172                 </snapshotRepository>
173                 <site>
174                         <id>ecomp-site</id>
175                         <url>dav:https://nexus.onap.org/content/sites/site/org/onap/clamp/${project.version}</url>
176                 </site>
177         </distributionManagement>
178
179         <repositories>
180                 <repository>
181                         <id>onap-public</id>
182                         <name>onap-public</name>
183                         <url>https://nexus.onap.org/content/repositories/public/</url>
184                         <releases>
185                                 <enabled>true</enabled>
186                         </releases>
187                         <snapshots>
188                                 <enabled>false</enabled>
189                         </snapshots>
190                 </repository>
191                 <repository>
192                         <id>ecomp-releases</id>
193                         <name>ONAP Release Repository</name>
194                         <url>https://nexus.onap.org/content/repositories/releases/</url>
195                 </repository>
196                 <repository>
197                         <id>ecomp-staging</id>
198                         <name>ONAP Staging Repository</name>
199                         <url>https://nexus.onap.org/content/repositories/staging/</url>
200                 </repository>
201                 <repository>
202                         <id>ecomp-snapshots</id>
203                         <name>ONAP Snapshot Repository</name>
204                         <url>https://nexus.onap.org/content/repositories/snapshots/</url>
205                         <snapshots>
206                                 <enabled>true</enabled>
207                         </snapshots>
208                         <releases>
209                                 <enabled>false</enabled>
210                         </releases>
211                 </repository>
212                 <repository>
213                         <id>central</id>
214                         <url>http://repo1.maven.org/maven2/</url>
215                 </repository>
216         </repositories>
217         <pluginRepositories>
218                 <pluginRepository>
219                         <id>onap-public</id>
220                         <name>onap-public</name>
221                         <url>https://nexus.onap.org/content/repositories/public/</url>
222                         <releases>
223                                 <enabled>true</enabled>
224                         </releases>
225                         <snapshots>
226                                 <enabled>false</enabled>
227                         </snapshots>
228                 </pluginRepository>
229                 <pluginRepository>
230                         <id>central</id>
231                         <url>http://repo1.maven.org/maven2/</url>
232                 </pluginRepository>
233         </pluginRepositories>
234
235         <dependencyManagement>
236                 <dependencies>
237                         <!-- Spring Boot BOM -->
238                         <dependency>
239                                 <groupId>org.springframework.boot</groupId>
240                                 <artifactId>spring-boot-dependencies</artifactId>
241                                 <version>${springboot.version}</version>
242                                 <type>pom</type>
243                                 <scope>import</scope>
244                         </dependency>
245                         <!-- Camel BOM -->
246                         <dependency>
247                                 <groupId>org.apache.camel</groupId>
248                                 <artifactId>camel-spring-boot-dependencies</artifactId>
249                                 <version>${camel.version}</version>
250                                 <type>pom</type>
251                                 <scope>import</scope>
252                         </dependency>
253                 </dependencies>
254         </dependencyManagement>
255
256         <dependencies>
257                 <dependency>
258                         <groupId>com.att.eelf</groupId>
259                         <artifactId>eelf-core</artifactId>
260                         <version>${eelf.core.version}</version>
261                         <exclusions>
262                                 <exclusion>
263                                         <groupId>org.powermock</groupId>
264                                         <artifactId>powermock-module-junit4</artifactId>
265                                 </exclusion>
266                                 <exclusion>
267                                         <groupId>org.powermock</groupId>
268                                         <artifactId>powermock-api-mockito</artifactId>
269                                 </exclusion>
270                         </exclusions>
271                 </dependency>
272                 <dependency>
273                         <groupId>org.apache.tomcat.embed</groupId>
274                         <artifactId>tomcat-embed-core</artifactId>
275                         <version>${tomcat.version}</version>
276                 </dependency>
277                 <dependency>
278                         <groupId>org.apache.tomcat.embed</groupId>
279                         <artifactId>tomcat-embed-el</artifactId>
280                         <version>${tomcat.version}</version>
281                 </dependency>
282                 <dependency>
283                         <groupId>org.apache.tomcat.embed</groupId>
284                         <artifactId>tomcat-embed-websocket</artifactId>
285                         <version>${tomcat.version}</version>
286                 </dependency>
287                 <dependency>
288                         <groupId>org.apache.tomcat</groupId>
289                         <artifactId>tomcat-annotations-api</artifactId>
290                         <version>${tomcat.version}</version>
291                 </dependency>
292                 <!-- For CAMEL -->
293                 <dependency>
294                         <groupId>org.apache.camel</groupId>
295                         <artifactId>camel-http4-starter</artifactId>
296                 </dependency>
297                 <dependency>
298                         <groupId>org.apache.camel</groupId>
299                         <artifactId>camel-spring-boot-starter</artifactId>
300                 </dependency>
301                 <dependency>
302                         <groupId>org.apache.camel</groupId>
303                         <artifactId>camel-jaxb-starter</artifactId>
304                 </dependency>
305                 <dependency>
306                         <groupId>org.apache.camel</groupId>
307                         <artifactId>camel-servlet-starter</artifactId>
308                 </dependency>
309                 <dependency>
310                         <groupId>org.apache.camel</groupId>
311                         <artifactId>camel-gson-starter</artifactId>
312                 </dependency>
313                 <dependency>
314                         <groupId>org.apache.camel</groupId>
315                         <artifactId>camel-swagger-java-starter</artifactId>
316                         <exclusions>
317                                 <exclusion>
318                                         <groupId>javax.ws.rs</groupId>
319                                         <artifactId>jsr311-api</artifactId>
320                                 </exclusion>
321                                 <exclusion>
322                                         <groupId>org.slf4j</groupId>
323                                         <artifactId>slf4j-ext</artifactId>
324                                 </exclusion>
325                         </exclusions>
326                 </dependency>
327                 <dependency>
328                         <groupId>javax.xml.ws</groupId>
329                         <artifactId>jaxws-api</artifactId>
330                         <version>2.3.1</version>
331                 </dependency>
332                 <dependency>
333                         <groupId>javax.xml.bind</groupId>
334                         <artifactId>jaxb-api</artifactId>
335                         <version>2.3.0</version>
336                 </dependency>
337                 <!-- Spring famework -->
338                 <dependency>
339                         <groupId>org.springframework.boot</groupId>
340                         <artifactId>spring-boot-starter-web</artifactId>
341                         <exclusions>
342                                 <exclusion>
343                                         <groupId>org.springframework.boot</groupId>
344                                         <artifactId>spring-boot-starter-json</artifactId>
345                                 </exclusion>
346                         </exclusions>
347                 </dependency>
348                 <dependency>
349                         <groupId>org.springframework.boot</groupId>
350                         <artifactId>spring-boot-starter-tomcat</artifactId>
351                 </dependency>
352                 <dependency>
353                         <groupId>org.springframework</groupId>
354                         <artifactId>spring-jdbc</artifactId>
355                 </dependency>
356                 <dependency>
357                         <groupId>org.springframework.boot</groupId>
358                         <artifactId>spring-boot-starter-security</artifactId>
359                 </dependency>
360                 <dependency>
361                         <groupId>org.springframework.boot</groupId>
362                         <artifactId>spring-boot-autoconfigure</artifactId>
363                 </dependency>
364                 <dependency>
365                         <groupId>org.springframework.boot</groupId>
366                         <artifactId>spring-boot-starter-test</artifactId>
367                         <scope>test</scope>
368                         <exclusions>
369                                 <exclusion>
370                                         <groupId>com.vaadin.external.google</groupId>
371                                         <artifactId>android-json</artifactId>
372                                 </exclusion>
373                         </exclusions>
374                 </dependency>
375                 <dependency>
376                         <groupId>org.springframework.boot</groupId>
377                         <artifactId>spring-boot-starter-data-jpa</artifactId>
378                 </dependency>
379                 <!-- Others dependencies -->
380                 <dependency>
381                         <groupId>org.onap.aaf.authz</groupId>
382                         <artifactId>aaf-cadi-aaf</artifactId>
383                         <version>2.1.15</version>
384                         <exclusions>
385                                 <exclusion>
386                                         <groupId>javax.servlet</groupId>
387                                         <artifactId>servlet-api</artifactId>
388                                 </exclusion>
389                                 <exclusion>
390                                         <groupId>log4j</groupId>
391                                         <artifactId>log4j</artifactId>
392                                 </exclusion>
393                         </exclusions>
394                 </dependency>
395                 <dependency>
396                         <groupId>ch.qos.logback</groupId>
397                         <artifactId>logback-core</artifactId>
398                         <version>1.2.3</version>
399                 </dependency>
400                 <dependency>
401                         <groupId>ch.qos.logback</groupId>
402                         <artifactId>logback-classic</artifactId>
403                         <version>1.2.3</version>
404                 </dependency>
405                 <dependency>
406                         <groupId>commons-dbcp</groupId>
407                         <artifactId>commons-dbcp</artifactId>
408                         <version>1.4</version>
409                 </dependency>
410                 <dependency>
411                         <groupId>commons-io</groupId>
412                         <artifactId>commons-io</artifactId>
413                         <version>2.6</version>
414                 </dependency>
415                 <dependency>
416                         <groupId>com.googlecode.json-simple</groupId>
417                         <artifactId>json-simple</artifactId>
418                         <version>1.1.1</version>
419                 </dependency>
420                 <dependency>
421                         <groupId>org.apache.commons</groupId>
422                         <artifactId>commons-vfs2</artifactId>
423                         <version>2.2</version>
424                 </dependency>
425                 <dependency>
426                         <groupId>org.slf4j</groupId>
427                         <artifactId>slf4j-api</artifactId>
428                 </dependency>
429                 <dependency>
430                         <groupId>javax.ws.rs</groupId>
431                         <artifactId>javax.ws.rs-api</artifactId>
432                         <version>2.0</version>
433                 </dependency>
434                 <dependency>
435                         <groupId>junit</groupId>
436                         <artifactId>junit</artifactId>
437                 </dependency>
438                 <dependency>
439                         <groupId>javax.transaction</groupId>
440                         <artifactId>jta</artifactId>
441                         <version>1.1</version>
442                 </dependency>
443                 <dependency>
444                         <groupId>javax.persistence</groupId>
445                         <artifactId>persistence-api</artifactId>
446                         <version>1.0.2</version>
447                 </dependency>
448                 <!-- Other dependencies to fix nexus IQ reported vulnerabilities -->
449                 <dependency>
450                         <groupId>commons-codec</groupId>
451                         <artifactId>commons-codec</artifactId>
452                         <version>1.14</version>
453                 </dependency>
454                 <dependency>
455                         <groupId>org.springframework.security</groupId>
456                         <artifactId>spring-security-web</artifactId>
457                         <version>5.2.3.RELEASE</version>
458                 </dependency>
459                 <dependency>
460                         <groupId>org.codehaus.plexus</groupId>
461                         <artifactId>plexus-utils</artifactId>
462                         <version>3.0.24</version>
463                 </dependency>
464                 <dependency>
465                         <groupId>org.jboss.spec.javax.ws.rs</groupId>
466                         <artifactId>jboss-jaxrs-api_2.0_spec</artifactId>
467                         <version>1.0.1.Final</version>
468                 </dependency>
469                 <dependency>
470                         <groupId>com.google.guava</groupId>
471                         <artifactId>guava</artifactId>
472                         <version>27.0-jre</version>
473                 </dependency>
474
475                 <!-- Remove the MYSQL connector and replace it by Mariadb -->
476                 <dependency>
477                         <groupId>org.mariadb.jdbc</groupId>
478                         <artifactId>mariadb-java-client</artifactId>
479                         <version>2.6.2</version>
480                 </dependency>
481                 <!-- For SDC Controller -->
482                 <dependency>
483                         <groupId>org.onap.sdc.sdc-distribution-client</groupId>
484                         <artifactId>sdc-distribution-client</artifactId>
485                         <version>1.3.0</version>
486                 </dependency>
487                 <dependency>
488                         <groupId>org.onap.sdc.sdc-tosca</groupId>
489                         <artifactId>sdc-tosca</artifactId>
490                         <version>1.5.1</version>
491                         <exclusions>
492                                 <exclusion>
493                                         <groupId>com.fasterxml.jackson.core</groupId>
494                                         <artifactId>jackson-databind</artifactId>
495                                 </exclusion>
496                         </exclusions>
497                 </dependency>
498                 <dependency>
499                         <groupId>org.yaml</groupId>
500                         <artifactId>snakeyaml</artifactId>
501                         <version>1.26</version>
502                 </dependency>
503                 <dependency>
504                         <groupId>org.dom4j</groupId>
505                         <artifactId>dom4j</artifactId>
506                         <version>2.1.3</version>
507                 </dependency>
508
509                 <!-- TESTING -->
510                 <dependency>
511                         <groupId>org.assertj</groupId>
512                         <artifactId>assertj-core</artifactId>
513                         <version>3.10.0</version>
514                         <scope>test</scope>
515                 </dependency>
516                 <dependency>
517                         <groupId>org.mockito</groupId>
518                         <artifactId>mockito-core</artifactId>
519                         <version>2.28.2</version>
520                         <scope>test</scope>
521                 </dependency>
522                 <dependency>
523                         <groupId>org.powermock</groupId>
524                         <artifactId>powermock-api-mockito2</artifactId>
525                         <version>2.0.4</version>
526                         <scope>test</scope>
527                 </dependency>
528                 <dependency>
529                         <groupId>org.powermock</groupId>
530                         <artifactId>powermock-module-junit4</artifactId>
531                         <version>2.0.4</version>
532                         <scope>test</scope>
533                 </dependency>
534                 <dependency>
535                         <groupId>com.github.docker-java</groupId>
536                         <artifactId>docker-java-core</artifactId>
537                         <version>3.2.1</version>
538                         <scope>test</scope>
539                         <exclusions>
540                                 <exclusion>
541                                         <groupId>com.fasterxml.jackson.core</groupId>
542                                         <artifactId>jackson-databind</artifactId>
543                                 </exclusion>
544                         </exclusions>
545                 </dependency>
546                 <dependency>
547                         <groupId>com.github.docker-java</groupId>
548                         <artifactId>docker-java</artifactId>
549                         <version>3.2.1</version>
550                         <scope>test</scope>
551                 </dependency>
552         </dependencies>
553
554         <build>
555                 <finalName>clamp</finalName>
556
557                 <testResources>
558                         <testResource>
559                                 <directory>src/main/resources</directory>
560                                 <filtering>true</filtering>
561                                 <excludes>
562                                         <exclude>clds/aaf/**</exclude>
563                                 </excludes>
564                         </testResource>
565                         <testResource>
566                                 <directory>src/main/resources</directory>
567                                 <filtering>false</filtering>
568                                 <includes>
569                                         <include>clds/aaf/**</include>
570                                 </includes>
571                         </testResource>
572                         <testResource>
573                                 <directory>src/test/resources</directory>
574                                 <excludes>
575                                         <exclude>**/*.jks</exclude>
576                                         <exclude>**/*.csar</exclude>
577                                 </excludes>
578                                 <filtering>true</filtering>
579                         </testResource>
580                         <testResource>
581                                 <directory>src/test/resources/https</directory>
582                                 <includes>
583                                         <include>**.jks</include>
584                                 </includes>
585                                 <filtering>false</filtering>
586                                 <targetPath>https</targetPath>
587                         </testResource>
588                         <testResource>
589                                 <directory>src/test/resources/example/sdc</directory>
590                                 <includes>
591                                         <include>**.csar</include>
592                                 </includes>
593                                 <filtering>false</filtering>
594                                 <targetPath>example/sdc</targetPath>
595                         </testResource>
596                 </testResources>
597                 <resources>
598                         <!-- For AAF folder maven should not try to filter Keystores/Truststores ... Otherwise
599                                 they will be broken and unreadable -->
600                         <resource>
601                                 <directory>src/main/resources</directory>
602                                 <filtering>true</filtering>
603                                 <excludes>
604                                         <exclude>clds/aaf/**</exclude>
605                                 </excludes>
606                         </resource>
607                         <resource>
608                                 <directory>src/main/resources</directory>
609                                 <filtering>false</filtering>
610                                 <includes>
611                                         <include>clds/aaf/**</include>
612                                 </includes>
613                         </resource>
614                         <resource>
615                                 <directory>${ui.react.src}</directory>
616                                 <excludes>
617                                         <exclude>node_modules</exclude>
618                                 </excludes>
619                                 <includes>
620                                         <include>src/**</include>
621                                         <include>public/**</include>
622                                         <include>package.json</include>
623                                         <include>package-lock.json</include>
624                                 </includes>
625                                 <filtering>true</filtering>
626                                 <targetPath>${project.build.directory}/${ui.react.src}</targetPath>
627                         </resource>
628                         <resource>
629                                 <directory>${ui.react.src}</directory>
630                                 <includes>
631                                         <include>src/**</include>
632                                 </includes>
633                                 <excludes>
634                                         <exclude>**/__snapshots__/**</exclude>
635                                         <exclude>**/**.test.js</exclude>
636                                 </excludes>
637                                 <filtering>true</filtering>
638                                 <targetPath>${project.build.directory}/${ui.react.lib.src}</targetPath>
639                         </resource>
640                         <resource>
641                                 <directory>${ui.react.lib.src}</directory>
642                                 <includes>
643                                         <include>**</include>
644                                 </includes>
645                                 <excludes>
646                                         <exclude>node_modules/**</exclude>
647                                         <exclude>package-lock.json</exclude>
648                                 </excludes>
649                                 <filtering>true</filtering>
650                                 <targetPath>${project.build.directory}/${ui.react.lib.src}</targetPath>
651                         </resource>
652                 </resources>
653
654                 <plugins>
655                         <plugin>
656                                         <groupId>de.jpdigital</groupId>
657                                         <artifactId>hibernate52-ddl-maven-plugin</artifactId>
658                                         <version>2.2.0</version>
659                                 <dependencies>
660                                         <dependency>
661                                                 <groupId>javax.xml.bind</groupId>
662                                                 <artifactId>jaxb-api</artifactId>
663                                                 <version>2.3.0</version>
664                                         </dependency>
665                                 </dependencies>
666                                 <executions>
667                                         <execution>
668                                                 <phase>process-classes</phase>
669                                                 <goals>
670                                                         <goal>gen-ddl</goal>
671                                                 </goals>
672                                                 <configuration>
673                                                         <packages>
674                                                                 <param>org.onap.clamp</param>
675                                                         </packages>
676                                                         <dialects>
677                                                                 <param>MARIADB53</param>
678                                                         </dialects>
679                                                         <outputDirectory>${project.basedir}/extra/sql/bulkload/</outputDirectory>
680                                                         <outputFileNameSuffix>create-tables</outputFileNameSuffix>
681                                                         <!-- <createDropStatements>true</createDropStatements> -->
682                                                         <omitDialectFromFileName>true</omitDialectFromFileName>
683                                                 </configuration>
684                                         </execution>
685                                 </executions>
686
687                         </plugin>
688                         <!-- Read the swagger.json file and the definition from SwaggerConfig.java; generate
689                                 a list of .adoc files containing the APIs info in more structured way -->
690                         <plugin>
691                                 <groupId>io.github.swagger2markup</groupId>
692                                 <artifactId>swagger2markup-maven-plugin</artifactId>
693                                 <version>1.3.3</version>
694                                 <dependencies>
695                                         <dependency>
696                                                 <groupId>io.github.swagger2markup</groupId>
697                                                 <artifactId>swagger2markup-import-files-ext</artifactId>
698                                                 <version>1.3.3</version>
699                                         </dependency>
700                                         <dependency>
701                                                 <groupId>io.github.swagger2markup</groupId>
702                                                 <artifactId>swagger2markup-spring-restdocs-ext</artifactId>
703                                                 <version>1.3.3</version>
704                                         </dependency>
705                                 </dependencies>
706                                 <configuration>
707                                         <swaggerInput>${project.basedir}/docs/swagger/swagger.json</swaggerInput>
708                                         <outputDir>${project.build.directory}/asciidoc/generated</outputDir>
709                                         <config>
710                                                 <swagger2markup.markupLanguage>ASCIIDOC</swagger2markup.markupLanguage>
711                                         </config>
712                                 </configuration>
713                                 <executions>
714                                         <execution>
715                                                 <phase>post-integration-test</phase>
716                                                 <goals>
717                                                         <goal>convertSwagger2markup</goal>
718                                                 </goals>
719                                         </execution>
720                                 </executions>
721                         </plugin>
722
723                         <!-- Run the generated asciidoc through Asciidoctor to generate other documentation
724                                 types, such as PDFs or HTML5 -->
725                         <plugin>
726                                 <groupId>org.asciidoctor</groupId>
727                                 <artifactId>asciidoctor-maven-plugin</artifactId>
728                                 <version>1.5.7.1</version>
729                                 <dependencies>
730                                         <dependency>
731                                                 <groupId>org.asciidoctor</groupId>
732                                                 <artifactId>asciidoctorj-pdf</artifactId>
733                                                 <version>1.5.0-alpha.10.1</version>
734                                         </dependency>
735                                 </dependencies>
736                                 <configuration>
737                                         <sourceDirectory>${project.basedir}/src/main/resources/asciidoc</sourceDirectory>
738                                         <sourceDocumentName>swagger.adoc</sourceDocumentName>
739                                         <attributes>
740                                                 <doctype>book</doctype>
741                                                 <toc>left</toc>
742                                                 <toclevels>3</toclevels>
743                                                 <numbered />
744                                                 <hardbreaks />
745                                                 <sectlinks />
746                                                 <sectanchors />
747                                                 <generated>${project.build.directory}/asciidoc/generated</generated>
748                                         </attributes>
749                                 </configuration>
750
751                                 <executions>
752                                         <execution>
753                                                 <id>output-html</id>
754                                                 <phase>post-integration-test</phase>
755                                                 <goals>
756                                                         <goal>process-asciidoc</goal>
757                                                 </goals>
758                                                 <configuration>
759                                                         <backend>html5</backend>
760                                                         <outputDirectory>${project.basedir}/docs/swagger</outputDirectory>
761                                                         <outputDirectory>${project.basedir}/src/main/resources/META-INF/resources/</outputDirectory>
762                                                 </configuration>
763                                         </execution>
764                                         <execution>
765                                                 <id>output-pdf</id>
766                                                 <phase>post-integration-test</phase>
767                                                 <goals>
768                                                         <goal>process-asciidoc</goal>
769                                                 </goals>
770                                                 <configuration>
771                                                         <backend>pdf</backend>
772                                                         <outputDirectory>${project.basedir}/docs/swagger</outputDirectory>
773                                                 </configuration>
774                                         </execution>
775                                 </executions>
776                         </plugin>
777                         <plugin>
778                                 <groupId>org.codehaus.groovy.maven</groupId>
779                                 <artifactId>gmaven-plugin</artifactId>
780                                 <version>1.0</version>
781                                 <executions>
782                                         <execution>
783                                                 <id>docker-tags</id>
784                                                 <phase>validate</phase>
785                                                 <goals>
786                                                         <goal>execute</goal>
787                                                 </goals>
788                                                 <configuration>
789                                                         <source>${project.basedir}/src/main/script/TagVersion.groovy</source>
790                                                 </configuration>
791                                         </execution>
792                                         <execution>
793                                                 <id>npm-repos-selection</id>
794                                                 <phase>validate</phase>
795                                                 <goals>
796                                                         <goal>execute</goal>
797                                                 </goals>
798                                                 <configuration>
799                                                         <source>${project.basedir}/src/main/script/SelectNpmRepo.groovy</source>
800                                                 </configuration>
801                                         </execution>
802                                 </executions>
803                         </plugin>
804                         <plugin>
805                                 <groupId>org.apache.maven.plugins</groupId>
806                                 <artifactId>maven-jar-plugin</artifactId>
807                                 <version>3.0.2</version>
808                                 <executions>
809                                         <execution>
810                                                 <id>jar-with-only-classes</id>
811                                                 <phase>package</phase>
812                                                 <goals>
813                                                         <goal>jar</goal>
814                                                 </goals>
815                                                 <configuration>
816                                                         <classifier>classes</classifier>
817                                                         <includes>
818                                                                 <include>org/**</include>
819                                                         </includes>
820                                                 </configuration>
821                                         </execution>
822                                 </executions>
823                         </plugin>
824                         <plugin>
825                                 <groupId>org.codehaus.mojo</groupId>
826                                 <artifactId>build-helper-maven-plugin</artifactId>
827                                 <version>3.0.0</version>
828                                 <executions>
829                                         <execution>
830                                                 <goals>
831                                                         <goal>attach-artifact</goal>
832                                                 </goals>
833                                                 <phase>package</phase>
834                                                 <configuration>
835                                                         <artifacts>
836                                                                 <artifact>
837                                                                         <file>${project.build.directory}/clamp-classes.jar</file>
838                                                                         <type>jar</type>
839                                                                         <classifier>classes</classifier>
840                                                                 </artifact>
841                                                         </artifacts>
842                                                 </configuration>
843                                         </execution>
844                                         <execution>
845                                                 <id>reserve-port-for-tests</id>
846                                                 <phase>process-resources</phase>
847                                                 <goals>
848                                                         <goal>reserve-network-port</goal>
849                                                 </goals>
850                                                 <configuration>
851                                                         <portNames>
852                                                                 <portName>docker.mariadb.port.host</portName>
853                                                                 <portName>docker.http-cache.port.host</portName>
854                                                                 <portName>clamp.it.tests.http-redirected</portName>
855                                                                 <portName>clamp.it.tests.robotframework.http</portName>
856                                                                 <portName>clamp.it.tests.https</portName>
857                                                                 <portName>clamp.it.tests.http</portName>
858                                                         </portNames>
859                                                 </configuration>
860                                         </execution>
861                                 </executions>
862                         </plugin>
863
864                         <plugin>
865                                 <groupId>org.springframework.boot</groupId>
866                                 <artifactId>spring-boot-maven-plugin</artifactId>
867                                 <version>${springboot.version}</version>
868                                 <executions>
869                                         <execution>
870                                                 <goals>
871                                                         <goal>repackage</goal>
872                                                 </goals>
873                                                 <phase>package</phase>
874                                         </execution>
875                                 </executions>
876                         </plugin>
877                         <plugin>
878                                 <groupId>org.apache.maven.plugins</groupId>
879                                 <artifactId>maven-surefire-plugin</artifactId>
880                                 <version>2.22.2</version>
881                                 <configuration>
882                                         <forkCount>1C</forkCount>
883                                         <reuseForks>true</reuseForks>
884                                         <useSystemClassLoader>false</useSystemClassLoader>
885                                         <argLine>${surefireArgLine}</argLine>
886                                 </configuration>
887                         </plugin>
888
889                         <plugin>
890                                 <groupId>org.apache.maven.plugins</groupId>
891                                 <artifactId>maven-failsafe-plugin</artifactId>
892                                 <version>2.22.2</version>
893                                 <executions>
894                                         <execution>
895                                                 <id>integration-tests</id>
896                                                 <goals>
897                                                         <goal>integration-test</goal>
898                                                         <goal>verify</goal>
899                                                 </goals>
900                                                 <configuration>
901                                                         <additionalClasspathElements>
902                                                                 <additionalClasspathElement>${project.build.directory}/classes</additionalClasspathElement>
903                                                         </additionalClasspathElements>
904                                                         <includes>
905                                                                 <include>**/*ItCase.java</include>
906                                                         </includes>
907                                                         <forkCount>1</forkCount>
908                                                         <reuseForks>true</reuseForks>
909                                                         <useSystemClassLoader>false</useSystemClassLoader>
910                                                         <argLine>${failsafeArgLine}</argLine>
911                                                 </configuration>
912                                         </execution>
913                                 </executions>
914                         </plugin>
915                         <plugin>
916                                 <groupId>io.fabric8</groupId>
917                                 <artifactId>docker-maven-plugin</artifactId>
918                                 <version>0.31.0</version>
919                                 <dependencies>
920                                         <dependency>
921                                                 <groupId>org.apache.httpcomponents</groupId>
922                                                 <artifactId>httpclient</artifactId>
923                                                 <version>4.5.5</version>
924                                         </dependency>
925                                 </dependencies>
926                                 <configuration>
927                                         <verbose>true</verbose>
928                                         <apiVersion>1.35</apiVersion>
929                                         <images>
930                                                 <image>
931                                                         <name>docker.io/mariadb:10.5.4</name>
932                                                         <alias>mariadb</alias>
933                                                         <run>
934                                                                 <env>
935                                                                         <MYSQL_ROOT_PASSWORD>strong_pitchou</MYSQL_ROOT_PASSWORD>
936                                                                 </env>
937                                                                 <hostname>mariadb</hostname>
938                                                                 <volumes>
939                                                                         <bind>
940                                                                                 <volume>${project.basedir}/extra/sql/:/docker-entrypoint-initdb.d:rw</volume>
941                                                                                 <volume>${project.basedir}/extra/docker/mariadb/conf1:/etc/mysql/conf.d</volume>
942                                                                         </bind>
943                                                                 </volumes>
944                                                                 <wait>
945                                                                         <log>socket: '/run/mysqld/mysqld.sock'  port: 3306  mariadb.org binary distribution</log>
946                                                                         <time>300000</time>
947                                                                         <exec>
948                                                                                 <preStop>/docker-entrypoint-initdb.d/dump/backup-data-only.sh</preStop>
949                                                                         </exec>
950                                                                 </wait>
951                                                                 <ports>
952                                                                         <port>${docker.mariadb.port.host}:3306</port>
953                                                                 </ports>
954                                                                 <network>
955                                                                         <mode>bridge</mode>
956                                                                 </network>
957                                                         </run>
958                                                 </image>
959                                                 <image>
960                                                         <name>docker.io/python:2-slim</name>
961                                                         <alias>python</alias>
962                                                         <run>
963                                                                 <hostname>python</hostname>
964                                                                 <volumes>
965                                                                         <bind>
966                                                                                 <volume>${project.basedir}/src/test/resources/http-cache/:/usr/src/http-cache-app</volume>
967                                                                                 <volume>${project.basedir}/src/test/resources/http-cache/example/:/usr/src/http-cache-app/data-cache</volume>
968                                                                         </bind>
969                                                                 </volumes>
970                                                                 <wait>
971                                                                         <tcp>
972                                                                                 <ports>
973                                                                                         <port>8080</port>
974                                                                                 </ports>
975                                                                                 <mode>direct</mode>
976                                                                         </tcp>
977                                                                         <time>120000</time>
978                                                                 </wait>
979                                                                 <ports>
980                                                                         <port>${docker.http-cache.port.host}:8080</port>
981                                                                 </ports>
982                                                                 <workingDir>/usr/src/http-cache-app</workingDir>
983                                                                 <cmd>
984                                                                         <shell>./start_http_cache.sh ${python.http.proxy.param}
985                                                                                 --python_proxyaddress=localhost:${docker.http-cache.port.host}</shell>
986                                                                 </cmd>
987                                                                 <network>
988                                                                         <mode>bridge</mode>
989                                                                 </network>
990                                                         </run>
991                                                 </image>
992                                                 <image>
993                                                         <name>onap/clamp-backend</name>
994                                                         <alias>onap-clamp-backend</alias>
995                                                         <run>
996                                                                 <skip>true</skip>
997                                                         </run>
998                                                         <build>
999                                                                 <cleanup>true</cleanup>
1000                                                                 <tags>
1001                                                                         <tag>latest</tag>
1002                                                                         <tag>${project.docker.latesttagtimestamp.version}</tag>
1003                                                                         <tag>${project.docker.latesttag.version}</tag>
1004                                                                 </tags>
1005                                                                 <!-- A relative path is looked up in ${project.basedir}/src/main/docker by
1006                                                                         default -->
1007                                                                 <dockerFile>backend/Dockerfile</dockerFile>
1008                                                                 <assembly>
1009                                                                         <descriptor>backend/backend-files.xml</descriptor>
1010                                                                         <name>onap-clamp-backend</name>
1011                                                                 </assembly>
1012                                                         </build>
1013                                                 </image>
1014                                                 <image>
1015                                                         <name>onap/clamp-frontend</name>
1016                                                         <alias>onap-clamp-frontend</alias>
1017                                                         <run>
1018                                                                 <skip>true</skip>
1019                                                         </run>
1020                                                         <build>
1021                                                                 <cleanup>true</cleanup>
1022                                                                 <tags>
1023                                                                         <tag>latest</tag>
1024                                                                         <tag>${project.docker.latesttagtimestamp.version}</tag>
1025                                                                         <tag>${project.docker.latesttag.version}</tag>
1026                                                                 </tags>
1027                                                                 <!-- A relative path is looked up in ${project.basedir}/src/main/docker by
1028                                                                         default -->
1029                                                                 <dockerFile>frontend/Dockerfile</dockerFile>
1030                                                                 <assembly>
1031                                                                         <descriptor>frontend/frontend-files.xml</descriptor>
1032                                                                         <name>onap-clamp-frontend</name>
1033                                                                 </assembly>
1034                                                         </build>
1035                                                 </image>
1036                                         </images>
1037                                 </configuration>
1038
1039                                 <executions>
1040                                         <execution>
1041                                                 <id>generate-images</id>
1042                                                 <phase>install</phase>
1043                                                 <goals>
1044                                                         <goal>build</goal>
1045                                                 </goals>
1046                                         </execution>
1047                                         <execution>
1048                                                 <id>push-images</id>
1049                                                 <phase>deploy</phase>
1050                                                 <goals>
1051                                                         <goal>push</goal>
1052                                                 </goals>
1053                                         </execution>
1054                                         <execution>
1055                                                 <id>docker-start-for-it</id>
1056                                                 <phase>pre-integration-test</phase>
1057                                                 <goals>
1058                                                         <goal>start</goal>
1059                                                 </goals>
1060                                         </execution>
1061                                         <execution>
1062                                                 <id>docker-stop-for-it</id>
1063                                                 <phase>post-integration-test</phase>
1064                                                 <goals>
1065                                                         <goal>stop</goal>
1066                                                 </goals>
1067                                         </execution>
1068                                 </executions>
1069                         </plugin>
1070
1071                         <plugin>
1072                                 <groupId>org.jacoco</groupId>
1073                                 <artifactId>jacoco-maven-plugin</artifactId>
1074                                 <version>0.8.5</version>
1075                                 <configuration>
1076                                         <dumpOnExit>true</dumpOnExit>
1077                                         <append>true</append>
1078                                         <includes>
1079                                                 <include>org/onap/clamp/**</include>
1080                                         </includes>
1081                                 </configuration>
1082                                 <executions>
1083                                         <execution>
1084                                                 <id>pre-unit-test</id>
1085                                                 <goals>
1086                                                         <goal>prepare-agent</goal>
1087                                                 </goals>
1088                                                 <configuration>
1089                                                         <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
1090                                                         <propertyName>surefireArgLine</propertyName>
1091                                                         <!-- <append>true</append> -->
1092                                                 </configuration>
1093                                         </execution>
1094                                         <execution>
1095                                                 <id>pre-integration-test</id>
1096                                                 <phase>pre-integration-test</phase>
1097                                                 <goals>
1098                                                         <goal>prepare-agent</goal>
1099                                                 </goals>
1100                                                 <configuration>
1101                                                         <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
1102                                                         <propertyName>failsafeArgLine</propertyName>
1103                                                         <!-- <append>true</append> -->
1104                                                 </configuration>
1105                                         </execution>
1106                                         <execution>
1107                                                 <goals>
1108                                                         <goal>merge</goal>
1109                                                 </goals>
1110                                                 <phase>post-integration-test</phase>
1111                                                 <configuration>
1112                                                         <fileSets>
1113                                                                 <fileSet
1114                                                                         implementation="org.apache.maven.shared.model.fileset.FileSet">
1115                                                                         <directory>${project.build.directory}/coverage-reports</directory>
1116                                                                         <includes>
1117                                                                                 <include>*.exec</include>
1118                                                                         </includes>
1119                                                                 </fileSet>
1120                                                         </fileSets>
1121                                                         <destFile>${project.build.directory}/jacoco.exec</destFile>
1122                                                 </configuration>
1123                                         </execution>
1124                                         <execution>
1125                                                 <id>report-xml</id>
1126                                                 <goals>
1127                                                         <goal>report</goal>
1128                                                 </goals>
1129                                                 <configuration>
1130                                                         <!-- Setting explicit path, so that we remember where it picks them up from -->
1131                                                         <dataFile>${project.build.directory}/jacoco.exec</dataFile>
1132                                                         <outputDirectory>${project.build.directory}/jacoco-html-xml-reports</outputDirectory>
1133                                                 </configuration>
1134                                         </execution>
1135                                 </executions>
1136                         </plugin>
1137
1138                         <!-- This plugin will be useful when we will have multi-modules project -->
1139                         <plugin>
1140                                 <groupId>org.codehaus.mojo</groupId>
1141                                 <artifactId>versions-maven-plugin</artifactId>
1142                                 <version>1.3.1</version>
1143                         </plugin>
1144
1145                         <plugin>
1146                                 <groupId>com.github.eirslett</groupId>
1147                                 <artifactId>frontend-maven-plugin</artifactId>
1148                                 <version>1.8.0</version>
1149                                 <configuration>
1150                                         <installDirectory>${project.build.directory}/${ui.react.src}</installDirectory>
1151                                 </configuration>
1152                                 <executions>
1153                                         <execution>
1154                                                 <id>install_node_and_npm</id>
1155                                                 <goals>
1156                                                         <goal>install-node-and-npm</goal>
1157                                                 </goals>
1158                                                 <phase>generate-sources</phase>
1159                                                 <configuration>
1160                                                         <nodeVersion>v12.13.0</nodeVersion>
1161                                                         <npmVersion>6.13.0</npmVersion>
1162                                                 </configuration>
1163                                         </execution>
1164                                         <execution>
1165                                                 <id>npm_install</id>
1166                                                 <goals>
1167                                                         <goal>npm</goal>
1168                                                 </goals>
1169                                                 <phase>compile</phase>
1170                                                 <configuration>
1171                                                         <workingDirectory>${project.build.directory}/${ui.react.src}</workingDirectory>
1172                                                         <arguments>install</arguments>
1173                                                 </configuration>
1174                                         </execution>
1175                                         <execution>
1176                                                 <id>npm_test</id>
1177                                                 <goals>
1178                                                         <goal>npm</goal>
1179                                                 </goals>
1180                                                 <phase>test</phase>
1181                                                 <configuration>
1182                                                         <skip>${maven.test.skip}</skip>
1183                                                         <arguments>run-script test:coverage</arguments>
1184                                                         <workingDirectory>${project.build.directory}/${ui.react.src}</workingDirectory>
1185                                                 </configuration>
1186                                         </execution>
1187                                         <execution>
1188                                                 <id>npm_install_lib</id>
1189                                                 <goals>
1190                                                         <goal>npm</goal>
1191                                                 </goals>
1192                                                 <phase>deploy</phase>
1193                                                 <configuration>
1194                                                         <workingDirectory>${project.build.directory}/${ui.react.lib.src}</workingDirectory>
1195                                                         <arguments>install</arguments>
1196                                                 </configuration>
1197                                         </execution>
1198                                         <execution>
1199                                                 <id>npm_build_lib</id>
1200                                                 <goals>
1201                                                         <goal>npm</goal>
1202                                                 </goals>
1203                                                 <phase>deploy</phase>
1204                                                 <configuration>
1205                                                         <workingDirectory>${project.build.directory}/${ui.react.lib.src}</workingDirectory>
1206                                                         <arguments>run build</arguments>
1207                                                 </configuration>
1208                                         </execution>
1209                                         <execution>
1210                                                 <id>npm_publish</id>
1211                                                 <goals>
1212                                                         <goal>npm</goal>
1213                                                 </goals>
1214                                                 <phase>deploy</phase>
1215                                                 <configuration>
1216                                                         <workingDirectory>${project.build.directory}/${ui.react.lib.src}</workingDirectory>
1217                                                         <arguments>publish</arguments>
1218                                                 </configuration>
1219                                         </execution>
1220                                 </executions>
1221                         </plugin>
1222                         <plugin>
1223                                 <groupId>org.apache.maven.plugins</groupId>
1224                                 <artifactId>maven-compiler-plugin</artifactId>
1225                                 <version>3.8.1</version>
1226                                 <configuration>
1227                                         <source>11</source>
1228                                         <target>11</target>
1229                                 </configuration>
1230                         </plugin>
1231                         <plugin>
1232                                 <groupId>org.sonarsource.scanner.maven</groupId>
1233                                 <artifactId>sonar-maven-plugin</artifactId>
1234                                 <version>3.7.0.1746</version>
1235                         </plugin>
1236             <plugin>
1237                 <groupId>org.codehaus.mojo</groupId>
1238                 <artifactId>exec-maven-plugin</artifactId>
1239                 <version>1.3.2</version>             
1240                 <executions>  
1241                     <execution>
1242                         <id>libIndexCheck</id>
1243                         <phase>validate</phase>
1244                         <goals>
1245                             <goal>exec</goal>
1246                         </goals>
1247                     </execution>
1248                 </executions>
1249                 <configuration>
1250                     <executable>bash</executable>
1251                     <arguments>
1252                         <argument>${project.basedir}/src/main/script/checkLibIndex.sh</argument>
1253                     </arguments>
1254                 </configuration>
1255           </plugin>
1256                 </plugins>
1257         </build>
1258 </project>