Add sdc startup in IT
[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 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10         *
11      http://www.apache.org/licenses/LICENSE-2.0
12         *
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19 ================================================================================
20 -->
21 <project xmlns="http://maven.apache.org/POM/4.0.0"
22          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24     <modelVersion>4.0.0</modelVersion>
25
26     <groupId>org.openecomp.sdc</groupId>
27     <artifactId>sdc-integration-tests</artifactId>
28     <packaging>jar</packaging>
29     <name>sdc-integration-tests</name>
30
31     <parent>
32         <groupId>org.openecomp.sdc</groupId>
33         <artifactId>sdc-main</artifactId>
34         <version>1.7.0-SNAPSHOT</version>
35     </parent>
36
37     <properties>
38         <!-- SDC Startup parameters -->
39         <it.env.name>integration-test</it.env.name>
40         <it.cassandra.port>9042</it.cassandra.port>
41         <it.cassandra.password>onap123#@!</it.cassandra.password>
42         <it.cassandra.ssl.enabled>false</it.cassandra.ssl.enabled>
43         <it.sdc.cluster.name>SDC-CS-${it.env.name}</it.sdc.cluster.name>
44         <it.sdc.user>asdc_user</it.sdc.user>
45         <it.sdc.password>Aa1234%^!</it.sdc.password>
46         <it.chef.config>${project.build.directory}/chef-config</it.chef.config>
47         <it.shared.volume>/tmp/sdc-integration-tests</it.shared.volume>
48         <it.docker.version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest
49         </it.docker.version>
50     </properties>
51
52     <dependencies>
53         <dependency>
54             <groupId>org.yaml</groupId>
55             <artifactId>snakeyaml</artifactId>
56             <version>${snakeyaml.version}</version>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>com.google.guava</groupId>
61             <artifactId>guava</artifactId>
62             <version>${guava.version}</version>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>junit</groupId>
67             <artifactId>junit</artifactId>
68             <version>${junit.version}</version>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>org.testng</groupId>
73             <artifactId>testng</artifactId>
74             <version>${testng.version}</version>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>com.google.code.gson</groupId>
79             <artifactId>gson</artifactId>
80             <version>${gson.version}</version>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.openecomp.sdc.be</groupId>
85             <artifactId>catalog-model</artifactId>
86             <version>${project.version}</version>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.openecomp.sdc.be</groupId>
91             <artifactId>catalog-dao</artifactId>
92             <version>${project.version}</version>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>com.aventstack</groupId>
97             <artifactId>extentreports</artifactId>
98             <version>3.0.6</version>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.janusgraph</groupId>
103             <artifactId>janusgraph-core</artifactId>
104             <version>${janusgraph.version}</version>
105             <scope>test</scope>
106             <exclusions>
107                 <exclusion>
108                     <artifactId>slf4j-log4j12</artifactId>
109                     <groupId>org.slf4j</groupId>
110                 </exclusion>
111                 <exclusion>
112                     <artifactId>commons-collections</artifactId>
113                     <groupId>commons-collections</groupId>
114                 </exclusion>
115                 <exclusion>
116                     <artifactId>groovy</artifactId>
117                     <groupId>org.codehaus.groovy</groupId>
118                 </exclusion>
119                 <exclusion>
120                     <groupId>org.apache.thrift</groupId>
121                     <artifactId>libthrift</artifactId>
122                 </exclusion>
123             </exclusions>
124         </dependency>
125         <dependency>
126             <groupId>org.assertj</groupId>
127             <artifactId>assertj-core</artifactId>
128             <version>${assertj.version}</version>
129             <scope>test</scope>
130         </dependency>
131         <dependency>
132             <groupId>com.clearspring.analytics</groupId>
133             <artifactId>stream</artifactId>
134             <version>${clearspring.version}</version>
135             <scope>test</scope>
136         </dependency>
137         <dependency>
138             <groupId>org.apache.httpcomponents</groupId>
139             <artifactId>httpclient</artifactId>
140             <version>${httpclient.version}</version>
141             <scope>test</scope>
142         </dependency>
143         <dependency>
144             <groupId>org.apache.httpcomponents</groupId>
145             <artifactId>httpcore</artifactId>
146             <version>${httpcore.version}</version>
147             <scope>test</scope>
148         </dependency>
149         <dependency>
150             <groupId>com.fasterxml.jackson.core</groupId>
151             <artifactId>jackson-core</artifactId>
152             <version>${jackson.version}</version>
153             <scope>test</scope>
154         </dependency>
155         <dependency>
156             <groupId>org.codehaus.jackson</groupId>
157             <artifactId>jackson-mapper-asl</artifactId>
158             <version>1.9.2</version>
159             <scope>test</scope>
160         </dependency>
161         <dependency>
162             <groupId>com.fasterxml.jackson.core</groupId>
163             <artifactId>jackson-databind</artifactId>
164             <version>${jackson.version}</version>
165             <scope>test</scope>
166             <exclusions>
167                 <exclusion>
168                     <groupId>com.fasterxml.jackson.core</groupId>
169                     <artifactId>jackson-core</artifactId>
170                 </exclusion>
171             </exclusions>
172         </dependency>
173
174         <!--FOR the Frontend -->
175         <dependency>
176             <groupId>org.seleniumhq.selenium</groupId>
177             <artifactId>selenium-java</artifactId>
178             <scope>test</scope>
179             <version>2.53.1</version>
180             <exclusions>
181                 <exclusion>
182                     <groupId>org.eclipse.jetty</groupId>
183                     <artifactId>jetty-util</artifactId>
184                 </exclusion>
185                 <exclusion>
186                     <groupId>io.netty</groupId>
187                     <artifactId>netty</artifactId>
188                 </exclusion>
189             </exclusions>
190         </dependency>
191         <dependency>
192             <groupId>net.lightbody.bmp</groupId>
193             <!-- To use the legacy, Jetty-based implementation, change the artifactId
194               to browsermob-core -->
195             <artifactId>browsermob-core</artifactId>
196             <version>2.1.4</version>
197             <scope>test</scope>
198             <exclusions>
199                 <exclusion>
200                     <groupId>com.fasterxml.jackson.core</groupId>
201                     <artifactId>jackson-core</artifactId>
202                 </exclusion>
203             </exclusions>
204         </dependency>
205         <dependency>
206             <groupId>com.paulhammant</groupId>
207             <artifactId>ngwebdriver</artifactId>
208             <version>0.9.7</version>
209             <scope>test</scope>
210         </dependency>
211         <dependency>
212             <groupId>com.github.markusbernhardt</groupId>
213             <artifactId>proxy-vole</artifactId>
214             <version>1.0.2</version>
215             <scope>test</scope>
216         </dependency>
217         <dependency>
218             <groupId>org.hamcrest</groupId>
219             <artifactId>hamcrest</artifactId>
220             <version>${hamcrest.version}</version>
221             <scope>test</scope>
222         </dependency>
223         <dependency>
224             <groupId>commons-net</groupId>
225             <artifactId>commons-net</artifactId>
226             <version>3.3</version>
227             <scope>test</scope>
228         </dependency>
229
230         <!--<dependency>
231             <groupId>org.seleniumhq.selenium</groupId>
232             <artifactId>selenium-server</artifactId>
233             <version>2.53.1</version>
234             <scope>test</scope>
235         </dependency>-->
236
237     </dependencies>
238
239     <build>
240         <plugins>
241             <!-- Section for Integration tests -->
242             <plugin>
243                 <artifactId>maven-resources-plugin</artifactId>
244                 <executions>
245                     <execution>
246                         <id>copy-resources</id>
247                         <phase>pre-integration-test</phase>
248                         <goals>
249                             <goal>copy-resources</goal>
250                         </goals>
251                         <configuration>
252                             <outputDirectory>${it.chef.config}</outputDirectory>
253                             <resources>
254                                 <resource>
255                                     <directory>environments</directory>
256                                     <filtering>true</filtering>
257                                     <includes>
258                                         <include>integration-test.json</include>
259                                     </includes>
260                                 </resource>
261                             </resources>
262                         </configuration>
263                     </execution>
264                 </executions>
265             </plugin>
266             <plugin>
267                 <artifactId>maven-antrun-plugin</artifactId>
268                 <version>1.8</version>
269                 <executions>
270                     <execution>
271                         <phase>pre-integration-test</phase>
272                         <configuration>
273                             <target>
274                                 <mkdir dir="${it.shared.volume}"/>
275                                 <chmod dir="${it.shared.volume}" type="dir" perm="ugo+rwx"/>
276                             </target>
277                         </configuration>
278                         <goals>
279                             <goal>run</goal>
280                         </goals>
281                     </execution>
282                 </executions>
283             </plugin>
284             <plugin>
285                 <groupId>org.codehaus.mojo</groupId>
286                 <artifactId>build-helper-maven-plugin</artifactId>
287                 <executions>
288                     <execution>
289                         <id>reserve-port-for-tests</id>
290                         <phase>validate</phase>
291                         <goals>
292                             <goal>reserve-network-port</goal>
293                         </goals>
294                         <configuration>
295                             <portNames>
296                                 <portName>sdc.it.docker.cassandra.port</portName>
297                             </portNames>
298                         </configuration>
299                     </execution>
300                 </executions>
301             </plugin>
302             <plugin>
303                 <groupId>io.fabric8</groupId>
304                 <artifactId>docker-maven-plugin</artifactId>
305                 <dependencies>
306                     <dependency>
307                         <groupId>org.apache.httpcomponents</groupId>
308                         <artifactId>httpclient</artifactId>
309                         <version>4.5.5</version>
310                     </dependency>
311                 </dependencies>
312                 <configuration>
313                     <verbose>true</verbose>
314                     <apiVersion>1.35</apiVersion>
315                     <autoCreateCustomNetworks>true</autoCreateCustomNetworks>
316                     <images>
317                         <image>
318                             <name>onap/sdc-cassandra:${it.docker.version}</name>
319                             <alias>sdc-cassandra</alias>
320                             <run>
321                                 <env>
322                                     <RELEASE>${project.version}</RELEASE>
323                                     <CS_PASSWORD>${it.cassandra.password}</CS_PASSWORD>
324                                     <ENVNAME>${it.env.name}</ENVNAME>
325                                     <MAX_HEAP_SIZE>1536M</MAX_HEAP_SIZE>
326                                     <HEAP_NEWSIZE>512M</HEAP_NEWSIZE>
327                                 </env>
328                                 <hostname>sdc-cs</hostname>
329                                 <volumes>
330                                     <bind>
331                                         <volume>${it.chef.config}:/root/chef-solo/environments</volume>
332                                     </bind>
333                                 </volumes>
334                                 <ulimits>
335                                     <ulimit>
336                                         <name>memlock</name>
337                                         <hard>-1</hard>
338                                         <soft>-1</soft>
339                                     </ulimit>
340                                     <ulimit>
341                                         <name>nofile</name>
342                                         <hard>100000</hard>
343                                         <soft>100000</soft>
344                                     </ulimit>
345                                 </ulimits>
346                                 <wait>
347                                     <time>120000</time>
348                                     <tcp>
349                                         <host>sdc-cs</host>
350                                         <mode>direct</mode>
351                                         <ports>
352                                             <port>9042</port>
353                                         </ports>
354                                     </tcp>
355                                 </wait>
356                                 <ports>
357                                     <port>9042:9042</port>
358                                 </ports>
359                                 <network>
360                                     <mode>custom</mode>
361                                     <name>sdc-network</name>
362                                     <alias>sdc-cs</alias>
363                                 </network>
364                             </run>
365                         </image>
366                         <image>
367                             <name>onap/sdc-cassandra-init:${it.docker.version}</name>
368                             <alias>sdc-cassandra-init</alias>
369                             <run>
370                                 <dependsOn>
371                                     <container>sdc-cassandra</container>
372                                 </dependsOn>
373                                 <env>
374                                     <RELEASE>${project.version}</RELEASE>
375                                     <SDC_USER>${it.sdc.user}</SDC_USER>
376                                     <SDC_PASSWORD>${it.sdc.password}</SDC_PASSWORD>
377                                     <CS_PASSWORD>${it.cassandra.password}</CS_PASSWORD>
378                                     <ENVNAME>${it.env.name}</ENVNAME>
379                                 </env>
380                                 <hostname>sdc-cs-init</hostname>
381                                 <volumes>
382                                     <bind>
383                                         <volume>${it.chef.config}:/home/sdc/chef-solo/environments</volume>
384                                     </bind>
385                                 </volumes>
386                                 <wait>
387                                     <time>300000</time>
388                                     <log>SdcSchemaFileImport successfully completed</log>
389                                 </wait>
390                                 <network>
391                                     <mode>custom</mode>
392                                     <name>sdc-network</name>
393                                     <alias>sdc-cs-init</alias>
394                                 </network>
395                             </run>
396                         </image>
397                         <image>
398                             <name>onap/sdc-onboard-cassandra-init:${it.docker.version}</name>
399                             <alias>sdc-cassandra-onboard-init</alias>
400                             <run>
401                                 <dependsOn>
402                                     <container>sdc-cassandra-init</container>
403                                 </dependsOn>
404                                 <env>
405                                     <RELEASE>${project.version}</RELEASE>
406                                     <SDC_USER>${it.sdc.user}</SDC_USER>
407                                     <SDC_PASSWORD>${it.sdc.password}</SDC_PASSWORD>
408                                     <CS_PASSWORD>${it.cassandra.password}</CS_PASSWORD>
409                                     <CS_HOST_PORT>${it.cassandra.port}</CS_HOST_PORT>
410                                     <ENVNAME>${it.env.name}</ENVNAME>
411                                     <CS_HOST_IP>sdc-cs</CS_HOST_IP>
412                                 </env>
413                                 <hostname>sdc-cs-onboard-init</hostname>
414                                 <volumes>
415                                     <bind>
416                                         <volume>${it.chef.config}:/home/sdc/chef-solo/environments</volume>
417                                     </bind>
418                                 </volumes>
419                                 <wait>
420                                     <time>30000</time>
421                                     <log>Initializing onboard schemas</log>
422                                 </wait>
423                                 <network>
424                                     <mode>custom</mode>
425                                     <name>sdc-network</name>
426                                     <alias>sdc-cs-onboard-init</alias>
427                                 </network>
428                             </run>
429                         </image>
430                         <image>
431                             <name>onap/sdc-onboard-backend:${it.docker.version}</name>
432                             <alias>sdc-onboard-backend</alias>
433                             <run>
434                                 <dependsOn>
435                                     <container>sdc-cassandra-onboard-init</container>
436                                 </dependsOn>
437                                 <env>
438                                     <cassandra_ssl_enabled>${it.cassandra.ssl.enabled}</cassandra_ssl_enabled>
439                                     <SDC_CLUSTER_NAME>${it.sdc.cluster.name}</SDC_CLUSTER_NAME>
440                                     <SDC_USER>${it.sdc.user}</SDC_USER>
441                                     <SDC_PASSWORD>${it.sdc.password}</SDC_PASSWORD>
442                                     <ENVNAME>${it.env.name}</ENVNAME>
443                                     <SDC_CERT_DIR>onap/cert</SDC_CERT_DIR>
444                                     <JAVA_OPTIONS>-Xdebug -agentlib:jdwp=transport=dt_socket,address=4001,server=y,suspend=n -Xmx1g -Xms1g</JAVA_OPTIONS>
445                                 </env>
446                                 <hostname>sdc-onboard-BE</hostname>
447                                 <volumes>
448                                     <bind>
449                                         <volume>${it.chef.config}:/var/lib/jetty/chef-solo/environments</volume>
450                                         <volume>${project.basedir}/src/test/resources/cert:/var/lib/jetty/onap/cert</volume>
451                                     </bind>
452                                 </volumes>
453                                 <wait>
454                                     <time>30000</time>
455                                     <tcp>
456                                         <host>sdc-onboard-BE</host>
457                                         <mode>direct</mode>
458                                         <ports>
459                                             <port>8445</port>
460                                             <port>8081</port>
461                                             <port>4001</port>
462                                         </ports>
463                                     </tcp>
464                                 </wait>
465                                 <ports>
466                                     <port>8445:8445</port>
467                                     <port>8081:8081</port>
468                                     <port>4001:4001</port>
469                                 </ports>
470                                 <network>
471                                     <mode>custom</mode>
472                                     <name>sdc-network</name>
473                                     <alias>sdc-onboard-BE</alias>
474                                 </network>
475                             </run>
476                         </image>
477                         <image>
478                             <name>onap/sdc-backend:${it.docker.version}</name>
479                             <alias>sdc-backend</alias>
480                             <run>
481                                 <dependsOn>
482                                     <container>sdc-onboard-backend</container>
483                                 </dependsOn>
484                                 <env>
485                                     <cassandra_ssl_enabled>${it.cassandra.ssl.enabled}</cassandra_ssl_enabled>
486                                     <ENVNAME>${it.env.name}</ENVNAME>
487                                     <JAVA_OPTIONS>-Xdebug -agentlib:jdwp=transport=dt_socket,address=4000,server=y,suspend=n -Xmx1536m -Xms1536m</JAVA_OPTIONS>
488                                 </env>
489                                 <hostname>sdc-BE</hostname>
490                                 <volumes>
491                                     <bind>
492                                         <volume>${it.chef.config}:/var/lib/jetty/chef-solo/environments</volume>
493                                         <volume>${it.shared.volume}:/var/lib/jetty/logs</volume>
494                                     </bind>
495                                 </volumes>
496                                 <wait>
497                                     <time>60000</time>
498                                     <tcp>
499                                         <host>sdc-BE</host>
500                                         <mode>direct</mode>
501                                         <ports>
502                                             <port>8443</port>
503                                             <port>8080</port>
504                                             <port>4000</port>
505                                         </ports>
506                                     </tcp>
507                                 </wait>
508                                 <ports>
509                                     <port>8443:8443</port>
510                                     <port>8080:8080</port>
511                                     <port>4000:4000</port>
512                                 </ports>
513                                 <network>
514                                     <mode>custom</mode>
515                                     <name>sdc-network</name>
516                                     <alias>sdc-BE</alias>
517                                 </network>
518                             </run>
519                         </image>
520                         <image>
521                             <name>onap/sdc-backend-init:${it.docker.version}</name>
522                             <alias>sdc-backend-init</alias>
523                             <run>
524                                 <dependsOn>
525                                     <container>sdc-backend</container>
526                                 </dependsOn>
527                                 <env>
528                                     <ENVNAME>${it.env.name}</ENVNAME>
529                                 </env>
530                                 <hostname>sdc-BE-init</hostname>
531                                 <volumes>
532                                     <bind>
533                                         <volume>${it.chef.config}:/home/onap/chef-solo/environments</volume>
534                                         <volume>${it.shared.volume}:/var/lib/jetty/logs</volume>
535                                     </bind>
536                                 </volumes>
537                                 <wait>
538                                     <time>600000</time>
539                                     <log>Chef Client finished</log>
540                                 </wait>
541                                 <network>
542                                     <mode>custom</mode>
543                                     <name>sdc-network</name>
544                                     <alias>sdc-BE-init</alias>
545                                 </network>
546                             </run>
547                         </image>
548                         <image>
549                             <name>onap/sdc-frontend:${it.docker.version}</name>
550                             <alias>sdc-frontend</alias>
551                             <run>
552                                 <dependsOn>
553                                     <container>sdc-backend-init</container>
554                                 </dependsOn>
555                                 <env>
556                                     <ENVNAME>${it.env.name}</ENVNAME>
557                                     <JAVA_OPTIONS>-Xdebug -agentlib:jdwp=transport=dt_socket,address=6000,server=y,suspend=n -Xmx256m -Xms256m</JAVA_OPTIONS>
558                                 </env>
559                                 <hostname>sdc-FE</hostname>
560                                 <volumes>
561                                     <bind>
562                                         <volume>${it.chef.config}:/var/lib/jetty/chef-solo/environments</volume>
563                                         <volume>${it.shared.volume}:/var/lib/jetty/logs</volume>
564                                         <volume>
565                                             environments/plugins-configuration.yaml:/var/lib/jetty/config/catalog-fe/plugins-configuration.yaml
566                                         </volume>
567                                     </bind>
568                                 </volumes>
569                                 <wait>
570                                     <time>60000</time>
571                                     <tcp>
572                                         <host>sdc-FE</host>
573                                         <mode>direct</mode>
574                                         <ports>
575                                             <port>9443</port>
576                                             <port>8181</port>
577                                             <port>6000</port>
578                                         </ports>
579                                     </tcp>
580                                 </wait>
581                                 <ports>
582                                     <port>9443:9443</port>
583                                     <port>8181:8181</port>
584                                     <port>6000:6000</port>
585                                 </ports>
586                                 <network>
587                                     <mode>custom</mode>
588                                     <name>sdc-network</name>
589                                     <alias>sdc-FE</alias>
590                                 </network>
591                             </run>
592                         </image>
593                         <image>
594                             <name>onap/sdc-simulator:${it.docker.version}</name>
595                             <alias>sdc-simulator</alias>
596                             <run>
597                                 <dependsOn>
598                                     <container>sdc-frontend</container>
599                                 </dependsOn>
600                                 <env>
601                                     <!--<FE_URL>${it.env.name}</FE_URL>-->
602                                     <JAVA_OPTIONS>-Xmx128m -Xms128m -Xss1m</JAVA_OPTIONS>
603                                     <ENVNAME>${it.env.name}</ENVNAME>
604                                 </env>
605                                 <hostname>sdc-sim</hostname>
606                                 <volumes>
607                                     <bind>
608                                         <volume>${it.chef.config}:/root/chef-solo/environments</volume>
609                                     </bind>
610                                 </volumes>
611                                 <wait>
612                                     <time>60000</time>
613                                     <tcp>
614                                         <host>sdc-sim</host>
615                                         <mode>direct</mode>
616                                         <ports>
617                                             <port>8080</port>
618                                             <port>8443</port>
619                                         </ports>
620                                     </tcp>
621                                 </wait>
622                                 <ports>
623                                     <port>8285:8080</port>
624                                     <port>8286:8443</port>
625                                 </ports>
626                                 <network>
627                                     <mode>custom</mode>
628                                     <name>sdc-network</name>
629                                     <alias>sdc-sim</alias>
630                                 </network>
631                             </run>
632                         </image>
633                     </images>
634                 </configuration>
635                 <executions>
636                     <execution>
637                         <id>docker-start-for-it</id>
638                         <phase>pre-integration-test</phase>
639                         <goals>
640                             <goal>start</goal>
641                         </goals>
642                     </execution>
643                     <execution>
644                         <id>docker-stop-for-it</id>
645                         <phase>post-integration-test</phase>
646                         <goals>
647                             <goal>stop</goal>
648                         </goals>
649                     </execution>
650                 </executions>
651             </plugin>
652
653             <plugin>
654                 <groupId>org.apache.maven.plugins</groupId>
655                 <artifactId>maven-surefire-plugin</artifactId>
656                 <configuration>
657                     <skip>true</skip>
658                 </configuration>
659             </plugin>
660             <plugin>
661                 <groupId>org.apache.maven.plugins</groupId>
662                 <artifactId>maven-failsafe-plugin</artifactId>
663                 <configuration>
664                     <suiteXmlFiles>
665                         <file>src/test/resources/ci/testSuites/backend/onapApiSanity.xml</file>
666                         <!--<file>src/test/resources/ci/testSuites/artifacts.xml</file>-->
667                         <!--<file>src/test/resources/ci/testSuites/cap_req.xml</file>-->
668                         <!--<file>src/test/resources/ci/testSuites/category.xml</file>-->
669                         <!--<file>src/test/resources/ci/testSuites/ciFull.xml</file>-->
670                         <!--<file>src/test/resources/ci/testSuites/CRUDArtifacts.xml</file>-->
671                         <!--<file>src/test/resources/ci/testSuites/externalAPIs.xml</file>-->
672                         <!--<file>src/test/resources/ci/testSuites/ExternalApiSanity.xml</file>-->
673 <!--                        <file>src/test/resources/ci/testSuites/general.xml</file>-->
674 <!--                        <file>src/test/resources/ci/testSuites/imports.xml</file>-->
675                         <!--<file>src/test/resources/ci/testSuites/normatives.xml</file>-->
676                         <!--<file>src/test/resources/ci/testSuites/onapApiSanity.xml</file>-->
677                         <!--<file>src/test/resources/ci/testSuites/pass.xml</file>-->
678 <!--                        <file>src/test/resources/ci/testSuites/product.xml</file>-->
679                         <!--<file>src/test/resources/ci/testSuites/productAPIs.xml</file>-->
680 <!--                        <file>src/test/resources/ci/testSuites/property.xml</file>-->
681 <!--                        <file>src/test/resources/ci/testSuites/resource.xml</file>-->
682                         <!--<file>src/test/resources/ci/testSuites/sanity.xml</file>-->
683                         <!--<file>src/test/resources/ci/testSuites/SearchExternalAPI.xml</file>-->
684 <!--                        <file>src/test/resources/ci/testSuites/service.xml</file>-->
685                         <!--<file>src/test/resources/ci/testSuites/testngLifeCycle.xml</file>-->
686 <!--                        <file>src/test/resources/ci/testSuites/user.xml</file>-->
687                     </suiteXmlFiles>
688 <!--                    <includes>-->
689 <!--                        <include>**/*Test.java</include>-->
690 <!--                    </includes>-->
691
692                 </configuration>
693             </plugin>
694         </plugins>
695     </build>
696 </project>
697