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