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