Create test model
[sdc.git] / integration-tests / pom.xml
1 <!--
2 ============LICENSE_START=======================================================
3 SDC
4 ================================================================================
5 Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6 Modifications copyright (c) 2020-2021 Nokia
7 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11         *
12      http://www.apache.org/licenses/LICENSE-2.0
13         *
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 ================================================================================
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
28     <artifactId>sdc-integration-tests</artifactId>
29     <packaging>jar</packaging>
30     <name>sdc-integration-tests</name>
31
32     <parent>
33         <groupId>org.openecomp.sdc</groupId>
34         <artifactId>sdc-main</artifactId>
35         <version>1.13.1-SNAPSHOT</version>
36     </parent>
37
38     <properties>
39         <selenium.version>3.141.59</selenium.version>
40         <gecko.driver.version>0.33.0</gecko.driver.version>
41         <!-- SDC Startup parameters -->
42         <it.env.name>integration-test</it.env.name>
43         <it.cassandra.port>9042</it.cassandra.port>
44         <it.cassandra.password>onap123#@!</it.cassandra.password>
45         <it.cassandra.ssl.enabled>false</it.cassandra.ssl.enabled>
46         <it.sdc.cluster.name>SDC-CS-${it.env.name}</it.sdc.cluster.name>
47         <it.sdc.user>asdc_user</it.sdc.user>
48         <it.sdc.password>Aa1234%^!</it.sdc.password>
49         <it.chef.config>${project.build.directory}/chef-config</it.chef.config>
50         <it.sdc-be.plugins>${project.build.directory}/plugins/sdc-be</it.sdc-be.plugins>
51         <it.shared.volume>/tmp/sdc-integration-tests</it.shared.volume>
52         <it.docker.version>latest</it.docker.version>
53         <it.ui.firefox.version>86.0</it.ui.firefox.version>
54         <it.helm-validator.disabled>true</it.helm-validator.disabled>
55         <it.test-model.disabled>true</it.test-model.disabled>
56         <it.helm-validator.version>1.3.1</it.helm-validator.version>
57
58         <!-- parser-->
59         <sdc-tosca-parser.version>1.8.0</sdc-tosca-parser.version>
60         <docker.showLogs>false</docker.showLogs>
61     </properties>
62
63     <dependencies>
64         <dependency>
65             <groupId>ch.qos.logback</groupId>
66             <artifactId>logback-classic</artifactId>
67             <version>${logback.version}</version>
68         </dependency>
69
70         <dependency>
71             <groupId>org.yaml</groupId>
72             <artifactId>snakeyaml</artifactId>
73             <version>${snakeyaml.version}</version>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.hamcrest</groupId>
78             <artifactId>hamcrest</artifactId>
79             <version>${hamcrest.version}</version>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.testng</groupId>
84             <artifactId>testng</artifactId>
85             <version>${testng.version}</version>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>com.google.code.gson</groupId>
90             <artifactId>gson</artifactId>
91             <version>${gson.version}</version>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.openecomp.sdc.be</groupId>
96             <artifactId>catalog-model</artifactId>
97             <version>${project.version}</version>
98             <scope>test</scope>
99             <exclusions>
100                 <exclusion>
101                     <groupId>org.eclipse.jetty</groupId>
102                     <artifactId>jetty-server</artifactId>
103                 </exclusion>
104                 <exclusion>
105                     <groupId>org.eclipse.jetty</groupId>
106                     <artifactId>jetty-servlet</artifactId>
107                 </exclusion>
108             </exclusions>
109         </dependency>
110         <dependency>
111             <groupId>org.openecomp.sdc.be</groupId>
112             <artifactId>catalog-dao</artifactId>
113             <version>${project.version}</version>
114             <scope>test</scope>
115             <exclusions>
116                 <exclusion>
117                     <groupId>org.eclipse.jetty</groupId>
118                     <artifactId>jetty-server</artifactId>
119                 </exclusion>
120                 <exclusion>
121                     <groupId>org.eclipse.jetty</groupId>
122                     <artifactId>jetty-servlet</artifactId>
123                 </exclusion>
124             </exclusions>
125         </dependency>
126         <dependency>
127             <groupId>org.openecomp.sdc</groupId>
128             <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId>
129             <version>${project.version}</version>
130             <scope>test</scope>
131             <exclusions>
132                 <exclusion>
133                     <groupId>org.springframework</groupId>
134                     <artifactId>spring-core</artifactId>
135                 </exclusion>
136             </exclusions>
137         </dependency>
138         <dependency>
139             <groupId>com.aventstack</groupId>
140             <artifactId>extentreports</artifactId>
141             <version>3.0.6</version>
142             <scope>test</scope>
143             <exclusions>
144                 <exclusion>
145                     <groupId>org.jsoup</groupId>
146                     <artifactId>jsoup</artifactId>
147                 </exclusion>
148                 <exclusion>
149                     <groupId>org.apache.httpcomponents</groupId>
150                     <artifactId>httpmime</artifactId>
151                 </exclusion>
152                 <exclusion>
153                     <groupId>org.mongodb</groupId>
154                     <artifactId>mongodb-driver</artifactId>
155                 </exclusion>
156             </exclusions>
157         </dependency>
158         <dependency>
159             <groupId>org.mongodb</groupId>
160             <artifactId>mongodb-driver</artifactId>
161             <version>3.12.10</version>
162         </dependency>
163
164         <dependency>
165             <groupId>org.janusgraph</groupId>
166             <artifactId>janusgraph-core</artifactId>
167             <version>${janusgraph.version}</version>
168             <scope>test</scope>
169             <exclusions>
170                 <exclusion>
171                     <groupId>org.apache.tinkerpop</groupId>
172                     <artifactId>gremlin-groovy</artifactId>
173                 </exclusion>
174                 <exclusion>
175                     <groupId>org.apache.tinkerpop</groupId>
176                     <artifactId>gremlin-core</artifactId>
177                 </exclusion>
178                 <exclusion>
179                     <artifactId>slf4j-log4j12</artifactId>
180                     <groupId>org.slf4j</groupId>
181                 </exclusion>
182                 <exclusion>
183                     <artifactId>commons-collections</artifactId>
184                     <groupId>commons-collections</groupId>
185                 </exclusion>
186                 <exclusion>
187                     <artifactId>groovy</artifactId>
188                     <groupId>org.codehaus.groovy</groupId>
189                 </exclusion>
190                 <exclusion>
191                     <groupId>org.apache.thrift</groupId>
192                     <artifactId>libthrift</artifactId>
193                 </exclusion>
194                 <exclusion>
195                     <groupId>org.apache.commons</groupId>
196                     <artifactId>commons-text</artifactId>
197                 </exclusion>
198                 <exclusion>
199                     <groupId>commons-codec</groupId>
200                     <artifactId>commons-codec</artifactId>
201                 </exclusion>
202                 <exclusion>
203                     <groupId>dom4j</groupId>
204                     <artifactId>dom4j</artifactId>
205                 </exclusion>
206                 <exclusion>
207                     <groupId>org.slf4j</groupId>
208                     <artifactId>jcl-over-slf4j</artifactId>
209                 </exclusion>
210             </exclusions>
211         </dependency>
212         <dependency>
213             <groupId>org.assertj</groupId>
214             <artifactId>assertj-core</artifactId>
215             <version>${assertj.version}</version>
216             <scope>test</scope>
217         </dependency>
218         <dependency>
219             <groupId>org.apache.commons</groupId>
220             <artifactId>commons-text</artifactId>
221             <version>${apache-commons-text.version}</version>
222             <scope>test</scope>
223         </dependency>
224         <dependency>
225             <groupId>com.clearspring.analytics</groupId>
226             <artifactId>stream</artifactId>
227             <version>${clearspring.version}</version>
228             <scope>test</scope>
229         </dependency>
230         <dependency>
231             <groupId>org.apache.httpcomponents</groupId>
232             <artifactId>httpclient</artifactId>
233             <version>${httpclient.version}</version>
234             <scope>test</scope>
235             <exclusions>
236                 <exclusion>
237                     <groupId>commons-codec</groupId>
238                     <artifactId>commons-codec</artifactId>
239                 </exclusion>
240                 <exclusion>
241                     <groupId>org.apache.httpcomponents</groupId>
242                     <artifactId>httpcore</artifactId>
243                 </exclusion>
244             </exclusions>
245         </dependency>
246         <dependency>
247             <groupId>org.apache.httpcomponents</groupId>
248             <artifactId>httpcore</artifactId>
249             <version>${httpcore.version}</version>
250             <scope>test</scope>
251         </dependency>
252         <dependency>
253             <groupId>com.fasterxml.jackson.core</groupId>
254             <artifactId>jackson-core</artifactId>
255             <version>${jackson.version}</version>
256             <scope>test</scope>
257         </dependency>
258         <dependency>
259             <groupId>org.codehaus.jackson</groupId>
260             <artifactId>jackson-mapper-asl</artifactId>
261             <version>1.9.2</version>
262             <scope>test</scope>
263         </dependency>
264         <dependency>
265             <groupId>com.fasterxml.jackson.core</groupId>
266             <artifactId>jackson-databind</artifactId>
267             <version>${jackson.version}</version>
268             <scope>test</scope>
269             <exclusions>
270                 <exclusion>
271                     <groupId>com.fasterxml.jackson.core</groupId>
272                     <artifactId>jackson-core</artifactId>
273                 </exclusion>
274             </exclusions>
275         </dependency>
276
277         <dependency>
278             <groupId>org.onap.sdc.sdc-tosca</groupId>
279             <artifactId>sdc-tosca</artifactId>
280             <version>${sdc-tosca-parser.version}</version>
281         </dependency>
282
283         <!--FOR the Frontend -->
284         <dependency>
285             <groupId>org.seleniumhq.selenium</groupId>
286             <artifactId>selenium-java</artifactId>
287             <scope>test</scope>
288             <version>${selenium.version}</version>
289         </dependency>
290         <dependency>
291             <groupId>org.seleniumhq.selenium</groupId>
292             <artifactId>selenium-server</artifactId>
293             <version>${selenium.version}</version>
294             <scope>test</scope>
295             <exclusions>
296                 <exclusion>
297                     <groupId>javax.servlet</groupId>
298                     <artifactId>javax.servlet-api</artifactId>
299                 </exclusion>
300             </exclusions>
301         </dependency>
302         <dependency>
303             <groupId>org.seleniumhq.selenium</groupId>
304             <artifactId>selenium-firefox-driver</artifactId>
305             <version>${selenium.version}</version>
306             <scope>test</scope>
307         </dependency>
308
309         <dependency>
310             <groupId>net.lightbody.bmp</groupId>
311             <!-- To use the legacy, Jetty-based implementation, change the artifactId
312               to browsermob-core -->
313             <artifactId>browsermob-core</artifactId>
314             <version>2.1.4</version>
315             <scope>test</scope>
316             <exclusions>
317                 <exclusion>
318                     <groupId>com.fasterxml.jackson.core</groupId>
319                     <artifactId>jackson-core</artifactId>
320                 </exclusion>
321                 <exclusion>
322                     <groupId>org.slf4j</groupId>
323                     <artifactId>jcl-over-slf4j</artifactId>
324                 </exclusion>
325             </exclusions>
326         </dependency>
327         <dependency>
328             <groupId>com.paulhammant</groupId>
329             <artifactId>ngwebdriver</artifactId>
330             <version>0.9.7</version>
331             <scope>test</scope>
332         </dependency>
333         <dependency>
334             <groupId>com.github.markusbernhardt</groupId>
335             <artifactId>proxy-vole</artifactId>
336             <version>1.0.2</version>
337             <scope>test</scope>
338             <exclusions>
339                 <exclusion>
340                     <groupId>net.java.dev.jna</groupId>
341                     <artifactId>jna</artifactId>
342                 </exclusion>
343                 <exclusion>
344                     <groupId>net.java.dev.jna</groupId>
345                     <artifactId>jna-platform</artifactId>
346                 </exclusion>
347             </exclusions>
348         </dependency>
349         <dependency>
350             <groupId>commons-net</groupId>
351             <artifactId>commons-net</artifactId>
352             <version>3.3</version>
353             <scope>test</scope>
354         </dependency>
355         <dependency>
356             <groupId>org.springframework</groupId>
357             <artifactId>spring-core</artifactId>
358             <version>${spring.version}</version>
359             <scope>test</scope>
360         </dependency>
361         <dependency>
362             <groupId>org.onap.portal.sdk</groupId>
363             <artifactId>epsdk-fw</artifactId>
364             <version>${ecomp.version}</version>
365             <scope>test</scope>
366             <exclusions>
367                 <exclusion>
368                     <groupId>log4j</groupId>
369                     <artifactId>log4j</artifactId>
370                 </exclusion>
371                 <exclusion>
372                     <groupId>org.owasp.esapi</groupId>
373                     <artifactId>esapi</artifactId>
374                 </exclusion>
375                 <exclusion>
376                     <groupId>javax.servlet</groupId>
377                     <artifactId>javax.servlet-api</artifactId>
378                 </exclusion>
379             </exclusions>
380         </dependency>
381         <dependency>
382             <groupId>org.functionaljava</groupId>
383             <artifactId>functionaljava</artifactId>
384             <version>${functionaljava.version}</version>
385             <scope>test</scope>
386         </dependency>
387     </dependencies>
388
389     <build>
390         <plugins>
391             <!-- Section for Integration tests -->
392             <plugin>
393                 <artifactId>maven-resources-plugin</artifactId>
394                 <executions>
395                     <execution>
396                         <id>copy-chef-resources</id>
397                         <phase>pre-integration-test</phase>
398                         <goals>
399                             <goal>copy-resources</goal>
400                         </goals>
401                         <configuration>
402                             <outputDirectory>${it.chef.config}</outputDirectory>
403                             <resources>
404                                 <resource>
405                                     <directory>environments</directory>
406                                     <filtering>true</filtering>
407                                     <includes>
408                                         <include>integration-test.json</include>
409                                     </includes>
410                                 </resource>
411                                 <resource>
412                                     <directory>environments</directory>
413                                     <filtering>false</filtering>
414                                     <includes>
415                                         <include>plugins-configuration.yaml</include>
416                                     </includes>
417                                 </resource>
418                             </resources>
419                         </configuration>
420                     </execution>
421                     <execution>
422                         <id>copy-sdc-be-plugins</id>
423                         <phase>pre-integration-test</phase>
424                         <goals>
425                             <goal>copy-resources</goal>
426                         </goals>
427                         <configuration>
428                             <outputDirectory>${it.sdc-be.plugins}</outputDirectory>
429                             <resources>
430                                 <resource>
431                                     <directory>
432                                         ../catalog-be-plugins/etsi-nfv-nsd-csar-plugin/target
433                                     </directory>
434                                     <filtering>false</filtering>
435                                     <includes>
436                                         <include>etsi-nfv-nsd-csar-plugin-${project.version}.jar
437                                         </include>
438                                     </includes>
439                                 </resource>
440                             </resources>
441                         </configuration>
442                     </execution>
443                     <execution>
444                         <id>copy-normatives</id>
445                         <phase>pre-integration-test</phase>
446                         <goals>
447                             <goal>copy-resources</goal>
448                         </goals>
449                         <configuration>
450                             <outputDirectory>
451                                 integration-tests-init/chef-repo/cookbooks/sdc-integration-tests-setup/files/default
452                             </outputDirectory>
453                             <resources>
454                                 <resource>
455                                     <directory>${project.build.directory}</directory>
456                                     <includes>
457                                         <include>normatives.tar.gz</include>
458                                     </includes>
459                                 </resource>
460                             </resources>
461                         </configuration>
462                     </execution>
463                     <execution>
464                         <id>copy-sdc-be-py</id>
465                         <phase>pre-integration-test</phase>
466                         <goals>
467                             <goal>copy-resources</goal>
468                         </goals>
469                         <configuration>
470                             <outputDirectory>
471                                 integration-tests-init/
472                             </outputDirectory>
473                             <resources>
474                                 <resource>
475                                     <directory>
476                                         ${project.parent.basedir}/catalog-be/src/main/resources/
477                                     </directory>
478                                     <includes>
479                                         <include>scripts/sdcBePy/**</include>
480                                         <inculde>scripts/setup.py</inculde>
481                                     </includes>
482                                 </resource>
483                             </resources>
484                         </configuration>
485                     </execution>
486                     <execution>
487                         <id>copy-be-configuration</id>
488                         <phase>pre-integration-test</phase>
489                         <goals>
490                             <goal>copy-resources</goal>
491                         </goals>
492                         <configuration>
493                             <overwrite>true</overwrite>
494                             <outputDirectory>
495                                 integration-tests-init/
496                             </outputDirectory>
497                             <resources>
498                                 <resource>
499                                     <directory>
500                                         ${project.parent.basedir}/catalog-be/src/main/docker/backend/chef-repo/cookbooks/sdc-catalog-be/templates/default/
501                                     </directory>
502                                     <includes>
503                                         <include>BE-configuration.yaml.erb</include>
504                                     </includes>
505                                 </resource>
506                             </resources>
507                         </configuration>
508                     </execution>
509                 </executions>
510             </plugin>
511             <plugin>
512                 <groupId>org.codehaus.mojo</groupId>
513                 <artifactId>wagon-maven-plugin</artifactId>
514                 <version>2.0.0</version>
515                 <executions>
516                     <execution>
517                         <id>download-gecko</id>
518                         <phase>validate</phase>
519                         <goals>
520                             <goal>download-single</goal>
521                         </goals>
522                         <configuration>
523                             <url>https://github.com</url>
524                             <fromFile>
525                                 mozilla/geckodriver/releases/download/v${gecko.driver.version}/geckodriver-v${gecko.driver.version}-linux64.tar.gz
526                             </fromFile>
527                             <toDir>${project.build.directory}/gecko</toDir>
528                         </configuration>
529                     </execution>
530                 </executions>
531             </plugin>
532             <plugin>
533                 <groupId>org.apache.maven.plugins</groupId>
534                 <artifactId>maven-antrun-plugin</artifactId>
535                 <version>${maven-antrun-plugin.version}</version>
536                 <executions>
537                     <execution>
538                         <id>set-folder-permission</id>
539                         <phase>pre-integration-test</phase>
540                         <configuration>
541                             <target>
542                                 <mkdir dir="/tmp/sdc-integration-tests"/>
543                                 <chmod dir="/tmp/sdc-integration-tests" type="dir" perm="ugo+rwx"/>
544                                 <mkdir dir="/tmp/sdc-integration-tests/downloadAutomation"/>
545                                 <chmod dir="/tmp/sdc-integration-tests/downloadAutomation"
546                                     type="dir"
547                                     perm="ugo+rwx"/>
548                             </target>
549                         </configuration>
550                         <goals>
551                             <goal>run</goal>
552                         </goals>
553                     </execution>
554                     <execution>
555                         <id>untar-gecko</id>
556                         <phase>pre-integration-test</phase>
557                         <configuration>
558                             <target>
559                                 <untar
560                                     src="${project.build.directory}/gecko/geckodriver-v${gecko.driver.version}-linux64.tar.gz"
561                                     compression="gzip" dest="${project.build.directory}/gecko/"/>
562                                 <chmod dir="${project.build.directory}/gecko/geckodriver" type="dir"
563                                     perm="ugo+rwx"/>
564                             </target>
565                         </configuration>
566                         <goals>
567                             <goal>run</goal>
568                         </goals>
569                     </execution>
570                     <execution>
571                         <id>add-test-model-to-config</id>
572                         <phase>pre-integration-test</phase>
573                         <goals>
574                             <goal>run</goal>
575                         </goals>
576                         <configuration>
577                             <target name="replace config" unless="${it.test-model.disabled}">
578                                 <ant antfile="src/main/assembly/replace.xml">
579                                     <target name="BE-configuration"/>
580                                 </ant>
581                             </target>
582                         </configuration>
583                     </execution>
584                 </executions>
585             </plugin>
586             <plugin>
587                 <groupId>org.codehaus.mojo</groupId>
588                 <artifactId>build-helper-maven-plugin</artifactId>
589                 <executions>
590                     <execution>
591                         <id>reserve-port-for-tests</id>
592                         <phase>validate</phase>
593                         <goals>
594                             <goal>reserve-network-port</goal>
595                         </goals>
596                         <configuration>
597                             <portNames>
598                                 <portName>sdc.it.docker.cassandra.port</portName>
599                             </portNames>
600                         </configuration>
601                     </execution>
602                 </executions>
603             </plugin>
604             <plugin>
605                 <groupId>org.apache.maven.plugins</groupId>
606                 <artifactId>maven-assembly-plugin</artifactId>
607                 <version>${mvn.assembly.version}</version>
608                 <executions>
609                     <execution>
610                         <id>normatives</id>
611                         <phase>prepare-package</phase>
612                         <goals>
613                             <goal>single</goal>
614                         </goals>
615                         <configuration>
616                             <finalName>normatives</finalName>
617                             <appendAssemblyId>false</appendAssemblyId>
618                             <descriptors>
619                                 <descriptor>src/main/assembly/normatives.xml</descriptor>
620                             </descriptors>
621                         </configuration>
622                     </execution>
623                 </executions>
624             </plugin>
625             <plugin>
626                 <groupId>org.apache.maven.plugins</groupId>
627                 <artifactId>maven-clean-plugin</artifactId>
628                 <executions>
629                     <execution>
630                         <id>clean.test.folder</id>
631                         <phase>clean</phase>
632                         <goals>
633                             <goal>clean</goal>
634                         </goals>
635                         <configuration>
636                             <filesets>
637                                 <fileset>
638                                     <directory>
639                                         integration-tests-init/chef-repo/cookbooks/sdc-integration-tests-setup/files/default
640                                     </directory>
641                                     <followSymlinks>false</followSymlinks>
642                                     <includes>
643                                         <include>normatives.tar.gz</include>
644                                     </includes>
645                                 </fileset>
646                             </filesets>
647                         </configuration>
648                     </execution>
649                 </executions>
650             </plugin>
651             <plugin>
652                 <groupId>io.fabric8</groupId>
653                 <artifactId>docker-maven-plugin</artifactId>
654                 <dependencies>
655                     <dependency>
656                         <groupId>org.apache.httpcomponents</groupId>
657                         <artifactId>httpclient</artifactId>
658                         <version>${httpclient.version}</version>
659                     </dependency>
660                 </dependencies>
661                 <configuration>
662                     <verbose>${verbose}</verbose>
663                     <apiVersion>${docker.api.version}</apiVersion>
664                     <autoCreateCustomNetworks>true</autoCreateCustomNetworks>
665                     <startParallel>true</startParallel>
666                     <images>
667                         <image>
668                             <name>${docker.namespace}/sdc-cassandra:${it.docker.version}</name>
669                             <alias>sdc-cassandra</alias>
670                             <run>
671                                 <env>
672                                     <RELEASE>${project.version}</RELEASE>
673                                     <CS_PASSWORD>${it.cassandra.password}</CS_PASSWORD>
674                                     <ENVNAME>${it.env.name}</ENVNAME>
675                                     <MAX_HEAP_SIZE>1536M</MAX_HEAP_SIZE>
676                                     <HEAP_NEWSIZE>512M</HEAP_NEWSIZE>
677                                 </env>
678                                 <hostname>sdc-cs</hostname>
679                                 <volumes>
680                                     <bind>
681                                         <volume>${it.chef.config}:/root/chef-solo/environments
682                                         </volume>
683                                     </bind>
684                                 </volumes>
685                                 <ulimits>
686                                     <ulimit>
687                                         <name>memlock</name>
688                                         <hard>-1</hard>
689                                         <soft>-1</soft>
690                                     </ulimit>
691                                     <ulimit>
692                                         <name>nofile</name>
693                                         <hard>100000</hard>
694                                         <soft>100000</soft>
695                                     </ulimit>
696                                 </ulimits>
697                                 <wait>
698                                     <time>120000</time>
699                                     <tcp>
700                                         <host>sdc-cs</host>
701                                         <mode>direct</mode>
702                                         <ports>
703                                             <port>9042</port>
704                                         </ports>
705                                     </tcp>
706                                 </wait>
707                                 <ports>
708                                     <port>9042:9042</port>
709                                 </ports>
710                                 <network>
711                                     <mode>custom</mode>
712                                     <name>sdc-network</name>
713                                     <alias>sdc-cs</alias>
714                                 </network>
715                             </run>
716                         </image>
717                         <image>
718                             <name>${docker.namespace}/sdc-cassandra-init:${it.docker.version}</name>
719                             <alias>sdc-cassandra-init</alias>
720                             <run>
721                                 <dependsOn>
722                                     <container>sdc-cassandra</container>
723                                 </dependsOn>
724                                 <env>
725                                     <RELEASE>${project.version}</RELEASE>
726                                     <SDC_USER>${it.sdc.user}</SDC_USER>
727                                     <SDC_PASSWORD>${it.sdc.password}</SDC_PASSWORD>
728                                     <CS_PASSWORD>${it.cassandra.password}</CS_PASSWORD>
729                                     <ENVNAME>${it.env.name}</ENVNAME>
730                                 </env>
731                                 <hostname>sdc-cs-init</hostname>
732                                 <volumes>
733                                     <bind>
734                                         <volume>${it.chef.config}:/home/sdc/chef-solo/environments
735                                         </volume>
736
737                                     </bind>
738                                 </volumes>
739                                 <wait>
740                                     <time>300000</time>
741                                     <log>SdcSchemaFileImport successfully completed</log>
742                                 </wait>
743                                 <network>
744                                     <mode>custom</mode>
745                                     <name>sdc-network</name>
746                                     <alias>sdc-cs-init</alias>
747                                 </network>
748                             </run>
749                         </image>
750                         <image>
751                             <name>${docker.namespace}/sdc-onboard-cassandra-init:${it.docker.version}</name>
752                             <alias>sdc-cassandra-onboard-init</alias>
753                             <run>
754                                 <dependsOn>
755                                     <container>sdc-cassandra-init</container>
756                                 </dependsOn>
757                                 <env>
758                                     <RELEASE>${project.version}</RELEASE>
759                                     <SDC_USER>${it.sdc.user}</SDC_USER>
760                                     <SDC_PASSWORD>${it.sdc.password}</SDC_PASSWORD>
761                                     <CS_PASSWORD>${it.cassandra.password}</CS_PASSWORD>
762                                     <CS_HOST_PORT>${it.cassandra.port}</CS_HOST_PORT>
763                                     <ENVNAME>${it.env.name}</ENVNAME>
764                                     <CS_HOST_IP>sdc-cs</CS_HOST_IP>
765                                 </env>
766                                 <hostname>sdc-cs-onboard-init</hostname>
767                                 <volumes>
768                                     <bind>
769                                         <volume>${it.chef.config}:/home/sdc/chef-solo/environments
770                                         </volume>
771                                     </bind>
772                                 </volumes>
773                                 <wait>
774                                     <time>30000</time>
775                                     <log>Onboarding init was successful</log>
776                                 </wait>
777                                 <network>
778                                     <mode>custom</mode>
779                                     <name>sdc-network</name>
780                                     <alias>sdc-cs-onboard-init</alias>
781                                 </network>
782                             </run>
783                         </image>
784                         <image>
785                             <name>${docker.namespace}/sdc-onboard-backend:${it.docker.version}</name>
786                             <alias>sdc-onboard-backend</alias>
787                             <run>
788                                 <dependsOn>
789                                     <container>sdc-cassandra-onboard-init</container>
790                                 </dependsOn>
791                                 <env>
792                                     <cassandra_ssl_enabled>${it.cassandra.ssl.enabled}
793                                     </cassandra_ssl_enabled>
794                                     <SDC_CLUSTER_NAME>${it.sdc.cluster.name}</SDC_CLUSTER_NAME>
795                                     <SDC_USER>${it.sdc.user}</SDC_USER>
796                                     <SDC_PASSWORD>${it.sdc.password}</SDC_PASSWORD>
797                                     <ENVNAME>${it.env.name}</ENVNAME>
798                                     <SDC_CERT_DIR>onap/cert</SDC_CERT_DIR>
799                                     <JAVA_OPTIONS>
800                                         -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:4001
801                                         -Xmx1g -Xms1g
802                                     </JAVA_OPTIONS>
803                                 </env>
804                                 <hostname>sdc-onboard-BE</hostname>
805                                 <volumes>
806                                     <bind>
807                                         <volume>${it.chef.config}:/app/jetty/chef-solo/environments</volume>
808                                         <volume>${project.basedir}/src/test/resources/cert/onboarding-be:/app/jetty/onap/cert
809                                         </volume>
810                                         <volume>${it.shared.volume}:/app/jetty/logs</volume>
811                                     </bind>
812                                 </volumes>
813                                 <wait>
814                                     <time>300000</time>
815                                     <tcp>
816                                         <host>sdc-onboard-BE</host>
817                                         <mode>direct</mode>
818                                         <ports>
819                                             <port>8445</port>
820                                             <port>8081</port>
821                                             <port>4001</port>
822                                         </ports>
823                                     </tcp>
824                                 </wait>
825                                 <ports>
826                                     <port>8445:8445</port>
827                                     <port>8081:8081</port>
828                                     <port>4001:4001</port>
829                                 </ports>
830                                 <network>
831                                     <mode>custom</mode>
832                                     <name>sdc-network</name>
833                                     <alias>sdc-onboard-BE</alias>
834                                 </network>
835                             </run>
836                         </image>
837                         <image>
838                             <name>${docker.namespace}/sdc-backend-all-plugins:${it.docker.version}</name>
839                             <alias>sdc-backend</alias>
840                             <run>
841                                 <dependsOn>
842                                     <container>sdc-cassandra-init</container>
843                                 </dependsOn>
844                                 <env>
845                                     <cassandra_ssl_enabled>${it.cassandra.ssl.enabled}
846                                     </cassandra_ssl_enabled>
847                                     <ENVNAME>${it.env.name}</ENVNAME>
848                                     <JAVA_OPTIONS>
849                                         -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:4000
850                                         -Xmx1536m -Xms1536m
851                                     </JAVA_OPTIONS>
852                                     <SDC_CERT_DIR>onap/cert</SDC_CERT_DIR>
853                                     <SDC_NSD_CERT_NAME>nsdCert</SDC_NSD_CERT_NAME>
854                                 </env>
855                                 <hostname>sdc-BE</hostname>
856                                 <volumes>
857                                     <bind>
858                                         <volume>
859                                             ${project.basedir}/integration-tests-init/BE-configuration.yaml.erb:/app/jetty/chef-solo/cookbooks/sdc-catalog-be/templates/default/BE-configuration.yaml.erb
860                                         </volume>
861                                         <volume>${it.chef.config}:/app/jetty/chef-solo/environments</volume>
862                                         <volume>${it.shared.volume}:/app/jetty/logs</volume>
863                                         <volume>
864                                             ${project.basedir}/src/test/resources/cert/catalog-be:/app/jetty/onap/cert
865                                         </volume>
866                                     </bind>
867                                 </volumes>
868                                 <wait>
869                                     <time>60000</time>
870                                     <tcp>
871                                         <host>sdc-BE</host>
872                                         <mode>direct</mode>
873                                         <ports>
874                                             <port>8443</port>
875                                             <port>8080</port>
876                                             <port>4000</port>
877                                         </ports>
878                                     </tcp>
879                                 </wait>
880                                 <ports>
881                                     <port>8443:8443</port>
882                                     <port>8080:8080</port>
883                                     <port>4000:4000</port>
884                                 </ports>
885                                 <network>
886                                     <mode>custom</mode>
887                                     <name>sdc-network</name>
888                                     <alias>sdc-BE</alias>
889                                 </network>
890                             </run>
891                         </image>
892                         <image>
893                             <name>${docker.namespace}/sdc-backend-init:${it.docker.version}</name>
894                             <alias>sdc-backend-init</alias>
895                             <run>
896                                 <dependsOn>
897                                     <container>sdc-backend</container>
898                                 </dependsOn>
899                                 <env>
900                                     <ENVNAME>${it.env.name}</ENVNAME>
901                                 </env>
902                                 <hostname>sdc-BE-init</hostname>
903                                 <volumes>
904                                     <bind>
905                                         <volume>
906                                             ${it.chef.config}:/home/onap/chef-solo/environments
907                                         </volume>
908                                         <volume>${it.shared.volume}:/home/onap/logs</volume>
909                                     </bind>
910                                 </volumes>
911                                 <wait>
912                                     <time>660000</time>
913                                     <log>Chef Client finished</log>
914                                 </wait>
915                                 <network>
916                                     <mode>custom</mode>
917                                     <name>sdc-network</name>
918                                     <alias>sdc-BE-init</alias>
919                                 </network>
920                             </run>
921                         </image>
922                         <image>
923                             <name>${docker.namespace}/sdc-frontend:${it.docker.version}</name>
924                             <alias>sdc-frontend</alias>
925                             <run>
926                                 <env>
927                                     <ENVNAME>${it.env.name}</ENVNAME>
928                                     <JAVA_OPTIONS>
929                                         -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:6000
930                                         -Xmx256m -Xms256m
931                                     </JAVA_OPTIONS>
932                                 </env>
933                                 <hostname>sdc-FE</hostname>
934                                 <volumes>
935                                     <bind>
936                                         <volume>${it.chef.config}:/app/jetty/chef-solo/environments</volume>
937                                         <volume>${it.shared.volume}:/app/jetty/logs</volume>
938                                         <volume>
939                                             ${it.chef.config}/plugins-configuration.yaml:/app/jetty/config/catalog-fe/plugins-configuration.yaml
940                                         </volume>
941
942                                     </bind>
943                                 </volumes>
944                                 <wait>
945                                     <time>60000</time>
946                                     <tcp>
947                                         <host>sdc-FE</host>
948                                         <mode>direct</mode>
949                                         <ports>
950                                             <port>9443</port>
951                                             <port>8181</port>
952                                             <port>6000</port>
953                                         </ports>
954                                     </tcp>
955                                 </wait>
956                                 <ports>
957                                     <port>9443:9443</port>
958                                     <port>8181:8181</port>
959                                     <port>6000:6000</port>
960                                 </ports>
961                                 <network>
962                                     <mode>custom</mode>
963                                     <name>sdc-network</name>
964                                     <alias>sdc-FE</alias>
965                                 </network>
966                             </run>
967                         </image>
968                         <image>
969                             <name>${docker.namespace}/sdc-simulator:${it.docker.version}</name>
970                             <alias>sdc-simulator</alias>
971                             <run>
972                                 <env>
973                                     <!--<FE_URL>${it.env.name}</FE_URL>-->
974                                     <JAVA_OPTIONS>-Xmx128m -Xms128m -Xss1m</JAVA_OPTIONS>
975                                     <ENVNAME>${it.env.name}</ENVNAME>
976                                 </env>
977                                 <hostname>sdc-sim</hostname>
978                                 <volumes>
979                                     <bind>
980                                         <volume>${it.chef.config}:/app/jetty/chef-solo/environments</volume>
981                                         <volume>${it.shared.volume}:/app/jetty/logs</volume>
982                                     </bind>
983                                 </volumes>
984                                 <wait>
985                                     <time>60000</time>
986                                     <tcp>
987                                         <host>sdc-sim</host>
988                                         <mode>direct</mode>
989                                         <ports>
990                                             <port>8080</port>
991                                             <port>8443</port>
992                                             <port>5000</port>
993                                         </ports>
994                                     </tcp>
995                                 </wait>
996                                 <ports>
997                                     <!-- http://localhost:8285/login to access SDC -->
998                                     <port>8285:8080</port>
999                                     <port>8286:8443</port>
1000                                     <port>5000:5000</port>
1001                                 </ports>
1002                                 <network>
1003                                     <mode>custom</mode>
1004                                     <name>sdc-network</name>
1005                                     <alias>sdc-sim</alias>
1006                                 </network>
1007                             </run>
1008                         </image>
1009                         <image>
1010                             <name>selenium/standalone-firefox:${it.ui.firefox.version}</name>
1011                             <alias>firefox-standalone</alias>
1012                             <run>
1013                                 <hostname>firefox-standalone</hostname>
1014                                 <wait>
1015                                     <time>20000</time>
1016                                     <tcp>
1017                                         <host>firefox-standalone</host>
1018                                         <mode>direct</mode>
1019                                         <ports>
1020                                             <!-- Selenium remote automation port -->
1021                                             <port>4444</port>
1022                                             <!--<port>5900</port>-->
1023                                             <!-- VNC port for viewing the browser result -->
1024                                             <!-- password to access is "secret" -->
1025                                         </ports>
1026                                     </tcp>
1027                                 </wait>
1028                                 <env>
1029                                     <JAVA_OPTS>-Xmx512m</JAVA_OPTS>
1030                                     <!--<START_XVFB>false</START_XVFB>-->
1031                                     <SCREEN_WIDTH>1920</SCREEN_WIDTH>
1032                                     <SCREEN_HEIGHT>1440</SCREEN_HEIGHT>
1033                                 </env>
1034                                 <ports>
1035                                     <port>4444:4444</port>
1036                                     <!--<port>5900:5900</port>-->
1037                                 </ports>
1038                                 <network>
1039                                     <mode>custom</mode>
1040                                     <name>sdc-network</name>
1041                                     <alias>firefox-standalone</alias>
1042                                 </network>
1043                                 <volumes>
1044                                     <bind>
1045                                         <volume>
1046                                             /tmp/sdc-integration-tests/downloadAutomation/:/home/seluser/Desktop
1047                                         </volume>
1048                                         <volume>/dev/shm:/dev/shm</volume>
1049                                     </bind>
1050                                 </volumes>
1051                             </run>
1052                         </image>
1053                         <image>
1054                             <name>${docker.namespace}/sdc-helm-validator:${it.helm-validator.version}</name>
1055                             <alias>helm-validator</alias>
1056                             <run>
1057                                 <skip>${it.helm-validator.disabled}</skip>
1058                                 <hostname>helm-validator</hostname>
1059                                 <wait>
1060                                     <time>20000</time>
1061                                     <tcp>
1062                                         <host>helm-validator</host>
1063                                         <mode>direct</mode>
1064                                         <ports>
1065                                             <port>8080</port>
1066                                         </ports>
1067                                     </tcp>
1068                                 </wait>
1069                                 <ports>
1070                                     <port>8085:8080</port>
1071                                 </ports>
1072                                 <network>
1073                                     <mode>custom</mode>
1074                                     <name>sdc-network</name>
1075                                     <alias>helm-validator</alias>
1076                                 </network>
1077                             </run>
1078                         </image>
1079                         <image>
1080                             <name>${docker.namespace}/sdc-integration-tests-init</name>
1081                             <alias>integration-tests-init</alias>
1082                             <build>
1083                                 <cleanup>try</cleanup>
1084                                 <dockerFileDir>${project.basedir}/integration-tests-init</dockerFileDir>
1085                                 <tags>
1086                                     <tag>latest</tag>
1087                                     <tag>
1088                                         ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest
1089                                     </tag>
1090                                     <tag>
1091                                         ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-${maven.build.timestamp}
1092                                     </tag>
1093                                 </tags>
1094                             </build>
1095                             <run>
1096                                 <skip>${it.test-model.disabled}</skip>
1097                                 <dependsOn>
1098                                     <container>sdc-backend-init</container>
1099                                 </dependsOn>
1100                                 <env>
1101                                     <ENVNAME>${it.env.name}</ENVNAME>
1102                                 </env>
1103                                 <hostname>integration-tests-init</hostname>
1104                                 <volumes>
1105                                     <bind>
1106                                         <volume>
1107                                             ${it.chef.config}:/home/onap/chef-solo/environments
1108                                         </volume>
1109                                     </bind>
1110                                 </volumes>
1111                                 <wait>
1112                                     <time>660000</time>
1113                                     <log>Chef Client finished</log>
1114                                 </wait>
1115                                 <network>
1116                                     <mode>custom</mode>
1117                                     <name>sdc-network</name>
1118                                     <alias>sdc-integration-tests-init</alias>
1119                                 </network>
1120                             </run>
1121                         </image>
1122                     </images>
1123                 </configuration>
1124                 <executions>
1125                     <execution>
1126                         <id>docker-build-for-it</id>
1127                         <phase>pre-integration-test</phase>
1128                         <goals>
1129                             <goal>build</goal>
1130                         </goals>
1131                     </execution>
1132                     <execution>
1133                         <id>docker-start-for-it</id>
1134                         <phase>pre-integration-test</phase>
1135                         <goals>
1136                             <goal>start</goal>
1137                         </goals>
1138                     </execution>
1139                     <execution>
1140                         <id>docker-stop-for-it</id>
1141                         <phase>post-integration-test</phase>
1142                         <goals>
1143                             <goal>stop</goal>
1144                         </goals>
1145                     </execution>
1146                 </executions>
1147             </plugin>
1148             <plugin>
1149                 <groupId>org.apache.maven.plugins</groupId>
1150                 <artifactId>maven-surefire-plugin</artifactId>
1151                 <configuration>
1152                     <skip>true</skip>
1153                 </configuration>
1154             </plugin>
1155             <plugin>
1156                 <groupId>org.apache.maven.plugins</groupId>
1157                 <artifactId>maven-failsafe-plugin</artifactId>
1158                 <configuration>
1159                     <forkCount>1</forkCount>
1160                     <reuseForks>true</reuseForks>
1161                     <systemProperties>
1162                         <property>
1163                             <name>testng.dtd.http</name>
1164                             <value>true</value>
1165                         </property>
1166                     </systemProperties>
1167                     <suiteXmlFiles>
1168                         <file>src/test/resources/ci/testSuites/backend/onapApiSanity.xml</file>
1169                         <file>src/test/resources/ci/testSuites/frontend/onapUiSanity.xml</file>
1170                         <!--<file>src/test/resources/ci/testSuites/artifacts.xml</file>-->
1171                         <!--<file>src/test/resources/ci/testSuites/cap_req.xml</file>-->
1172                         <!--<file>src/test/resources/ci/testSuites/category.xml</file>-->
1173                         <!--<file>src/test/resources/ci/testSuites/ciFull.xml</file>-->
1174                         <!--<file>src/test/resources/ci/testSuites/CRUDArtifacts.xml</file>-->
1175                         <!--<file>src/test/resources/ci/testSuites/externalAPIs.xml</file>-->
1176                         <!--<file>src/test/resources/ci/testSuites/ExternalApiSanity.xml</file>-->
1177                         <!--                        <file>src/test/resources/ci/testSuites/general.xml</file>-->
1178                         <!--                        <file>src/test/resources/ci/testSuites/imports.xml</file>-->
1179                         <!--<file>src/test/resources/ci/testSuites/normatives.xml</file>-->
1180                         <!--<file>src/test/resources/ci/testSuites/onapApiSanity.xml</file>-->
1181                         <!--<file>src/test/resources/ci/testSuites/pass.xml</file>-->
1182                         <!--                        <file>src/test/resources/ci/testSuites/product.xml</file>-->
1183                         <!--<file>src/test/resources/ci/testSuites/productAPIs.xml</file>-->
1184                         <!--                        <file>src/test/resources/ci/testSuites/property.xml</file>-->
1185                         <!--                        <file>src/test/resources/ci/testSuites/resource.xml</file>-->
1186                         <!--<file>src/test/resources/ci/testSuites/sanity.xml</file>-->
1187                         <!--<file>src/test/resources/ci/testSuites/SearchExternalAPI.xml</file>-->
1188                         <!--                        <file>src/test/resources/ci/testSuites/service.xml</file>-->
1189                         <!--<file>src/test/resources/ci/testSuites/testngLifeCycle.xml</file>-->
1190                         <!--                        <file>src/test/resources/ci/testSuites/user.xml</file>-->
1191                     </suiteXmlFiles>
1192                 </configuration>
1193             </plugin>
1194         </plugins>
1195     </build>
1196     <profiles>
1197         <profile>
1198             <id>add-test-model</id>
1199             <properties>
1200                 <it.test-model.disabled>false</it.test-model.disabled>
1201             </properties>
1202         </profile>
1203         <profile>
1204             <id>all-for-integration-tests-only</id>
1205             <properties>
1206                 <surefire.skip.tests>true</surefire.skip.tests>
1207                 <skipTest>false</skipTest>
1208                 <it.test-model.disabled>false</it.test-model.disabled>
1209             </properties>
1210         </profile>
1211         <profile>
1212             <id>integration-tests-with-helm-validator</id>
1213             <properties>
1214                 <it.helm-validator.disabled>false</it.helm-validator.disabled>
1215                 <it.test-model.disabled>false</it.test-model.disabled>
1216             </properties>
1217             <build>
1218                 <plugins>
1219                     <plugin>
1220                         <groupId>org.apache.maven.plugins</groupId>
1221                         <artifactId>maven-failsafe-plugin</artifactId>
1222                         <configuration>
1223                             <forkCount>1</forkCount>
1224                             <reuseForks>true</reuseForks>
1225                             <systemProperties>
1226                                 <property>
1227                                     <name>testng.dtd.http</name>
1228                                     <value>true</value>
1229                                 </property>
1230                             </systemProperties>
1231                             <suiteXmlFiles>
1232                                 <file>src/test/resources/ci/testSuites/backend/onapApiSanity.xml</file>
1233                                 <file>src/test/resources/ci/testSuites/frontend/onapUiSanity.xml</file>
1234                                 <file>src/test/resources/ci/testSuites/backend/helmValidatorTests.xml</file>
1235                                 <file>src/test/resources/ci/testSuites/frontend/helmValidatorTests.xml</file>
1236                             </suiteXmlFiles>
1237                         </configuration>
1238                     </plugin>
1239                 </plugins>
1240             </build>
1241         </profile>
1242         <profile>
1243             <id>run-integration-tests-api</id>
1244             <properties>
1245                 <it.helm-validator.disabled>false</it.helm-validator.disabled>
1246                 <skipYamlJsonValidator>true</skipYamlJsonValidator>
1247                 <checkstyle.skip>true</checkstyle.skip>
1248                 <surefire.skip.tests>true</surefire.skip.tests>
1249                 <skipTest>false</skipTest>
1250             </properties>
1251             <build>
1252                 <plugins>
1253                     <plugin>
1254                         <groupId>org.apache.maven.plugins</groupId>
1255                         <artifactId>maven-failsafe-plugin</artifactId>
1256                         <configuration>
1257                             <forkCount>1</forkCount>
1258                             <reuseForks>true</reuseForks>
1259                             <systemProperties>
1260                                 <property>
1261                                     <name>testng.dtd.http</name>
1262                                     <value>true</value>
1263                                 </property>
1264                             </systemProperties>
1265                             <suiteXmlFiles>
1266                                 <file>src/test/resources/ci/testSuites/backend/onapApiSanity.xml</file>
1267                                 <file>src/test/resources/ci/testSuites/backend/helmValidatorTests.xml</file>
1268                             </suiteXmlFiles>
1269                         </configuration>
1270                     </plugin>
1271                 </plugins>
1272             </build>
1273         </profile>
1274         <profile>
1275             <id>run-integration-tests-ui</id>
1276             <properties>
1277                 <it.helm-validator.disabled>false</it.helm-validator.disabled>
1278                 <skipYamlJsonValidator>true</skipYamlJsonValidator>
1279                 <checkstyle.skip>true</checkstyle.skip>
1280                 <surefire.skip.tests>true</surefire.skip.tests>
1281                 <skipTest>false</skipTest>
1282             </properties>
1283             <build>
1284                 <plugins>
1285                     <plugin>
1286                         <groupId>org.apache.maven.plugins</groupId>
1287                         <artifactId>maven-failsafe-plugin</artifactId>
1288                         <configuration>
1289                             <forkCount>1</forkCount>
1290                             <reuseForks>true</reuseForks>
1291                             <systemProperties>
1292                                 <property>
1293                                     <name>testng.dtd.http</name>
1294                                     <value>true</value>
1295                                 </property>
1296                             </systemProperties>
1297                             <suiteXmlFiles>
1298                                 <file>src/test/resources/ci/testSuites/frontend/onapUiSanity.xml</file>
1299                                 <file>src/test/resources/ci/testSuites/frontend/helmValidatorTests.xml</file>
1300                             </suiteXmlFiles>
1301                         </configuration>
1302                     </plugin>
1303                 </plugins>
1304             </build>
1305         </profile>
1306     </profiles>
1307 </project>