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