Merge "Merge simulator from ECOMP's repository"
[vid.git] / vid-app-common / pom.xml
1 <?xml version="1.0"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5     <modelVersion>4.0.0</modelVersion>
6
7     <!-- This is the Maven project object model (POM) file for VID web application
8         based on the ECOMP SDK distribution. This file stands alone; it does not
9         inherit from a parent maven module. -->
10     <groupId>org.onap.vid</groupId>
11     <artifactId>vid-app-common</artifactId>
12     <version>4.0.0-SNAPSHOT</version>
13     <packaging>war</packaging>
14     <name>VID Common</name>
15     <description>VID Common code for opensource version</description>
16
17     <parent>
18         <groupId>org.onap.oparent</groupId>
19         <artifactId>oparent</artifactId>
20         <version>1.2.3</version>
21         <relativePath/>
22     </parent>
23
24     <properties>
25         <encoding>UTF-8</encoding>
26         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
27         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
28         <epsdk.version>2.4.0</epsdk.version>
29         <springframework.version>4.2.9.RELEASE</springframework.version>
30         <hibernate.version>4.3.11.Final</hibernate.version>
31         <jackson.version>2.9.8</jackson.version>
32         <jersey.version>2.27</jersey.version>
33         <surefire.version>2.22.1</surefire.version>
34         <sonar.coverage.exclusions>**/webapp/**/*,**/*.js</sonar.coverage.exclusions>
35
36         <!-- Skip assembling the zip by default -->
37         <skipassembly>true</skipassembly>
38         <nexusproxy>https://nexus.onap.org</nexusproxy>
39         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
40         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
41         <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
42         <sitePath>/content/sites/site/org/onap/vid/${project.version}</sitePath>
43
44         <aspectj.version>1.8.9</aspectj.version>
45         <kotlin.version>1.3.11</kotlin.version>
46         <kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
47
48         <eirslett.version>1.6</eirslett.version>
49         <node.version>v6.16.0</node.version>
50
51     </properties>
52
53
54     <!-- this should be commented for local debugging -->
55     <!-- <deployenv>local</deployenv> -->
56
57     <repositories>
58         <repository>
59             <id>ecomp-releases</id>
60             <name>VID Release Repository</name>
61             <url>${nexusproxy}${releaseNexusPath}</url>
62         </repository>
63         <repository>
64             <id>ecomp-snapshots</id>
65             <name>VID Snapshot Repository</name>
66             <url>${nexusproxy}${snapshotNexusPath}</url>
67         </repository>
68         <repository>
69             <id>ecomp-staging</id>
70             <name>VID Staging Repository</name>
71             <url>${nexusproxy}${stagingNexusPath}</url>
72         </repository>
73         <repository>
74             <!-- Snapshots repository has ECOMP snapshot artifacts -->
75             <id>oss-snapshots</id>
76             <name>oss Central - Snapshots</name>
77             <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url>
78         </repository>
79
80     </repositories>
81     <distributionManagement>
82         <repository>
83             <id>ecomp-releases</id>
84             <name>VID Release Repository</name>
85             <url>${nexusproxy}/${releaseNexusPath}</url>
86         </repository>
87         <snapshotRepository>
88             <id>ecomp-snapshots</id>
89             <name>VID Snapshot Repository</name>
90             <url>${nexusproxy}/${snapshotNexusPath}</url>
91         </snapshotRepository>
92         <!-- added for javadoc -->
93         <site>
94             <id>ecomp-site</id>
95             <url>dav:${nexusproxy}${sitePath}</url>
96         </site>
97     </distributionManagement>
98
99     <build>
100         <finalName>vid-common</finalName>
101
102         <plugins>
103
104             <plugin>
105                 <artifactId>kotlin-maven-plugin</artifactId>
106                 <groupId>org.jetbrains.kotlin</groupId>
107                 <version>${kotlin.version}</version>
108                 <executions>
109                     <execution>
110                         <id>compile</id>
111                         <goals> <goal>compile</goal> </goals>
112                         <configuration>
113                             <sourceDirs>
114                                 <sourceDir>${project.basedir}/src/main/java</sourceDir>
115                             </sourceDirs>
116                         </configuration>
117                     </execution>
118                     <execution>
119                         <id>test-compile</id>
120                         <goals> <goal>test-compile</goal> </goals>
121                         <configuration>
122                             <sourceDirs>
123                                 <sourceDir>${project.basedir}/src/test/java</sourceDir>
124                             </sourceDirs>
125                         </configuration>
126                     </execution>
127                 </executions>
128             </plugin>
129
130             <plugin>
131                 <groupId>org.sonatype.plugins</groupId>
132                 <artifactId>nexus-staging-maven-plugin</artifactId>
133                 <version>1.6.7</version>
134                 <extensions>true</extensions>
135                 <configuration>
136                     <nexusUrl>${nexusproxy}</nexusUrl>
137                     <stagingProfileId>176c31dfe190a</stagingProfileId>
138                     <serverId>ecomp-staging</serverId>
139                 </configuration>
140             </plugin>
141             <plugin>
142                 <groupId>org.jacoco</groupId>
143                 <artifactId>jacoco-maven-plugin</artifactId>
144                 <version>0.8.3</version>
145                 <executions>
146                     <execution>
147                         <id>default-prepare-agent</id>
148                         <goals>
149                             <goal>prepare-agent</goal>
150                         </goals>
151                     </execution>
152                     <execution>
153                         <id>default-report</id>
154                         <goals>
155                             <goal>report</goal>
156                         </goals>
157                     </execution>
158                 </executions>
159             </plugin>
160             <plugin>
161                 <groupId>org.apache.tomcat.maven</groupId>
162                 <artifactId>tomcat6-maven-plugin</artifactId>
163                 <version>2.2</version>
164             </plugin>
165             <plugin>
166                 <groupId>org.apache.tomcat.maven</groupId>
167                 <artifactId>tomcat7-maven-plugin</artifactId>
168                 <version>2.2</version>
169             </plugin>
170
171             <plugin>
172                 <groupId>com.github.eirslett</groupId>
173                 <artifactId>frontend-maven-plugin</artifactId>
174                 <version>${eirslett.version}</version>
175                 <executions>
176                     <execution>
177                         <id>install node and npm</id>
178                         <goals>
179                             <goal>install-node-and-npm</goal>
180                         </goals>
181                         <phase>generate-resources</phase>
182                         <configuration>
183                             <nodeVersion>${node.version}</nodeVersion>
184                         </configuration>
185                     </execution>
186                     <execution>
187                         <id>npm run-script build</id>
188                         <configuration>
189                             <arguments>run-script build</arguments>
190                         </configuration>
191                         <goals>
192                             <goal>npm</goal>
193                         </goals>
194                         <phase>generate-resources</phase>
195                     </execution>
196                 </executions>
197             </plugin>
198
199             <plugin>
200                 <groupId>org.apache.maven.plugins</groupId>
201                 <artifactId>maven-compiler-plugin</artifactId>
202                 <version>3.5.1</version>
203                 <configuration>
204                     <source>1.8</source>
205                     <target>1.8</target>
206                 </configuration>
207
208                 <executions>
209                     <!-- Replacing default-compile as it is treated specially by maven -->
210                     <execution>
211                         <id>default-compile</id>
212                         <phase>none</phase>
213                     </execution>
214                     <!-- Replacing default-testCompile as it is treated specially by maven -->
215                     <execution>
216                         <id>default-testCompile</id>
217                         <phase>none</phase>
218                     </execution>
219                     <execution>
220                         <id>java-compile</id>
221                         <phase>compile</phase>
222                         <goals> <goal>compile</goal> </goals>
223                     </execution>
224                     <execution>
225                         <id>java-test-compile</id>
226                         <phase>test-compile</phase>
227                         <goals> <goal>testCompile</goal> </goals>
228                     </execution>
229                 </executions>
230
231             </plugin>
232
233             <plugin>
234                 <groupId>org.apache.maven.plugins</groupId>
235                 <artifactId>maven-surefire-plugin</artifactId>
236                 <version>${surefire.version}</version>
237                 <configuration>
238                     <includes>
239                         <include>**/Test*.java</include>
240                         <include>**/*Test.java</include>
241                         <include>**/*TestCase.java</include>
242                     </includes>
243                     <excludes>
244                         <exclude>**/selenium/*.java</exclude>
245                         <exclude>**/integrationTest/*.java</exclude>
246                     </excludes>
247                     <additionalClasspathElements>
248                         <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
249                     </additionalClasspathElements>
250                     <systemPropertyVariables>
251                         <container.classpath>classpath:</container.classpath>
252                     </systemPropertyVariables>
253                     <useSystemClassLoader>false</useSystemClassLoader>
254                     <properties>
255                         <property>
256                             <!-- avoid running JUnit tests within surefire-testng provider -->
257                             <name>junit</name>
258                             <value>false</value>
259                         </property>
260                     </properties>
261                     <threadCount>1</threadCount>
262                 </configuration>
263                 <dependencies>
264                     <!-- Running TestNG and JUnit Tests -->
265                     <!-- https://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html -->
266                     <dependency>
267                         <groupId>org.apache.maven.surefire</groupId>
268                         <artifactId>surefire-junit47</artifactId>
269                         <version>${surefire.version}</version>
270                     </dependency>
271                     <dependency>
272                         <groupId>org.apache.maven.surefire</groupId>
273                         <artifactId>surefire-testng</artifactId>
274                         <version>${surefire.version}</version>
275                     </dependency>
276                 </dependencies>
277             </plugin>
278
279             <plugin>
280                 <artifactId>maven-assembly-plugin</artifactId>
281                 <configuration>
282                     <skipAssembly>${skipassembly}</skipAssembly>
283                     <descriptors>
284                         <descriptor>${basedir}/distribution.xml</descriptor>
285                     </descriptors>
286                 </configuration>
287                 <executions>
288                     <execution>
289                         <id>make-assembly</id>
290                         <phase>package</phase>
291                         <goals>
292                             <goal>single</goal>
293                         </goals>
294                     </execution>
295                 </executions>
296             </plugin>
297
298
299             <plugin>
300                 <groupId>org.apache.maven.plugins</groupId>
301                 <artifactId>maven-war-plugin</artifactId>
302                 <version>3.0.0</version>
303                 <configuration>
304                     <!-- Build a jar with all the Java classes -->
305                     <attachClasses>true</attachClasses>
306                     <!-- Do not put any jars in the war -->
307                     <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
308                 </configuration>
309             </plugin>
310             <plugin>
311                 <groupId>org.apache.maven.plugins</groupId>
312                 <artifactId>maven-site-plugin</artifactId>
313                 <version>3.6</version>
314                 <dependencies>
315                     <dependency>
316                         <groupId>org.apache.maven.wagon</groupId>
317                         <artifactId>wagon-webdav-jackrabbit</artifactId>
318                         <version>2.10</version>
319                     </dependency>
320                 </dependencies>
321             </plugin>
322             <plugin>
323                 <groupId>pl.project13.maven</groupId>
324                 <artifactId>git-commit-id-plugin</artifactId>
325                 <version>2.2.4</version>
326                 <executions>
327                     <execution>
328                         <id>get-the-git-infos</id>
329                         <goals>
330                             <goal>revision</goal>
331                         </goals>
332                     </execution>
333                 </executions>
334                 <configuration>
335                     <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
336                     <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
337                     <dateFormatTimeZone>${user.timezone}</dateFormatTimeZone>
338                     <generateGitPropertiesFile>true</generateGitPropertiesFile>
339                     <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
340                     <includeOnlyProperties>
341                         <includeOnlyProperty>^git.commit.id$</includeOnlyProperty>
342                         <includeOnlyProperty>^git.commit.message.short$</includeOnlyProperty>
343                         <includeOnlyProperty>^git.commit.time$</includeOnlyProperty>
344                     </includeOnlyProperties>
345                 </configuration>
346             </plugin>
347
348             <plugin>
349                 <!--
350                 Replace phase "none" with "process-sources" to enable.
351                 Set organizationName as desired.
352                 Then run `mvn license:check-file-header`, or even `mvn
353                 license:update-file-header`.
354                 -->
355                 <groupId>org.codehaus.mojo</groupId>
356                 <artifactId>license-maven-plugin</artifactId>
357                 <version>1.17</version>
358
359                 <executions>
360                     <execution>
361                         <id>first</id>
362                         <goals>
363                             <goal>update-file-header</goal>
364                         </goals>
365                         <!-- replace phase "none" with "process-sources" to enable -->
366                         <phase>none</phase>
367                     </execution>
368                 </executions>
369
370                 <configuration>
371                     <canUpdateCopyright>false</canUpdateCopyright>
372                     <canUpdateDescription>false</canUpdateDescription>
373                     <licenseName>apache_v2</licenseName>
374                     <processStartTag>============LICENSE_START=======================================================</processStartTag>
375                     <processEndTag>============LICENSE_END=========================================================</processEndTag>
376                     <sectionDelimiter>================================================================================</sectionDelimiter>
377                     <projectName>VID</projectName>
378                     <inceptionYear>2017</inceptionYear>
379                     <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
380                     <canUpdateLicense>true</canUpdateLicense>
381                     <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
382                     <emptyLineAfterHeader>true</emptyLineAfterHeader>
383                     <verbose>false</verbose>
384
385                     <includes>
386                         <include>**/*.java</include>
387                         <include>**/*.kt</include>
388                         <include>**/*.jsp</include>
389                         <include>**/*.xml</include>
390                         <include>**/*.js</include>
391                         <include>**/*.ts</include>
392                         <include>**/*.html</include>
393                         <include>**/*.css</include>
394                         <include>**/*.sql</include>
395                     </includes>
396
397                     <extraExtensions>
398                         <sql>mysql</sql>
399                     </extraExtensions>
400
401                     <roots>
402                         <root>src/main</root>
403                         <root>src/test</root>
404                     </roots>
405
406                     <excludes>
407                         <exclude>**/app/vid/external/**/*</exclude>
408                         <exclude>**/main/webapp/WEB-INF/**/*</exclude>
409                         <exclude>**/test/resources/WEB-INF/**/*</exclude>
410                         <exclude>**/app/vid/scripts/angular-ui-tree.js</exclude>
411                     </excludes>
412
413                 </configuration>
414             </plugin>
415
416         </plugins>
417     </build>
418
419     <reporting>
420         <plugins>
421             <plugin>
422                 <groupId>org.apache.maven.plugins</groupId>
423                 <artifactId>maven-javadoc-plugin</artifactId>
424                 <version>2.10.4</version>
425                 <configuration>
426                     <failOnError>false</failOnError>
427                     <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
428                     <docletArtifact>
429                         <groupId>org.umlgraph</groupId>
430                         <artifactId>umlgraph</artifactId>
431                         <version>5.6</version>
432                     </docletArtifact>
433                     <additionalparam>-views</additionalparam>
434                     <useStandardDocletOptions>true</useStandardDocletOptions>
435                 </configuration>
436             </plugin>
437         </plugins>
438     </reporting>
439
440     <dependencies>
441
442         <dependency>
443             <groupId>com.opencsv</groupId>
444             <artifactId>opencsv</artifactId>
445             <version>4.1</version>
446         </dependency>
447
448         <!-- HTTP client -->
449
450         <dependency>
451             <groupId>io.joshworks.unirest</groupId>
452             <artifactId>unirest-java</artifactId>
453             <version>0.2.1</version>
454         </dependency>
455         <dependency>
456             <groupId>org.apache.httpcomponents</groupId>
457             <artifactId>httpclient</artifactId>
458         </dependency>
459         <dependency>
460             <groupId>org.apache.httpcomponents</groupId>
461             <artifactId>httpasyncclient</artifactId>
462             <version>4.0.2</version>
463         </dependency>
464         <dependency>
465             <groupId>org.apache.httpcomponents</groupId>
466             <artifactId>httpmime</artifactId>
467             <version>4.5.7</version>
468         </dependency>
469         <dependency>
470             <groupId>com.xebialabs.restito</groupId>
471             <artifactId>restito</artifactId>
472             <version>0.9.3</version>
473             <scope>test</scope>
474         </dependency>
475
476         <!-- Helpers -->
477         <dependency>
478             <groupId>io.vavr</groupId>
479             <artifactId>vavr</artifactId>
480             <version>0.9.2</version>
481         </dependency>
482
483         <!-- SDK overlay war -->
484         <dependency>
485             <groupId>org.onap.portal.sdk</groupId>
486             <artifactId>epsdk-app-overlay</artifactId>
487             <version>${epsdk.version}</version>
488             <type>war</type>
489         </dependency>
490         <dependency>
491             <groupId>org.onap.portal.sdk</groupId>
492             <artifactId>epsdk-app-common</artifactId>
493             <version>${epsdk.version}</version>
494             <type>jar</type>
495         </dependency>
496
497         <dependency>
498             <groupId>org.onap.portal.sdk</groupId>
499             <artifactId>epsdk-core</artifactId>
500             <version>${epsdk.version}</version>
501         </dependency>
502         <dependency>
503             <groupId>org.onap.portal.sdk</groupId>
504             <artifactId>epsdk-analytics</artifactId>
505             <version>${epsdk.version}</version>
506             <exclusions>
507                 <exclusion>
508                     <groupId>com.lowagie</groupId>
509                     <artifactId>itext</artifactId>
510                 </exclusion>
511             </exclusions>
512         </dependency>
513         <dependency>
514             <groupId>org.onap.portal.sdk</groupId>
515             <artifactId>epsdk-workflow</artifactId>
516             <version>${epsdk.version}</version>
517         </dependency>
518         <dependency>
519             <groupId>com.att.eelf</groupId>
520             <artifactId>eelf-core</artifactId>
521             <version>1.0.0</version>
522             <exclusions>
523                 <exclusion>
524                     <artifactId>powermock-api-mockito</artifactId>
525                     <groupId>org.powermock</groupId>
526                 </exclusion>
527             </exclusions>
528         </dependency>
529         <dependency>
530             <groupId>ch.qos.logback</groupId>
531             <artifactId>logback-classic</artifactId>
532         </dependency>
533
534         <dependency>
535             <groupId>org.jetbrains.kotlin</groupId>
536             <artifactId>kotlin-stdlib-jdk8</artifactId>
537             <version>${kotlin.version}</version>
538         </dependency>
539
540         <!-- Mapper -->
541         <dependency>
542             <groupId>com.fasterxml.jackson.core</groupId>
543             <artifactId>jackson-annotations</artifactId>
544             <version>${jackson.version}</version>
545         </dependency>
546         <dependency>
547             <groupId>com.fasterxml.jackson.core</groupId>
548             <artifactId>jackson-core</artifactId>
549             <version>${jackson.version}</version>
550         </dependency>
551         <dependency>
552             <groupId>com.fasterxml.jackson.core</groupId>
553             <artifactId>jackson-databind</artifactId>
554             <version>${jackson.version}</version>
555         </dependency>
556         <dependency>
557             <groupId>com.fasterxml.jackson.module</groupId>
558             <artifactId>jackson-module-kotlin</artifactId>
559             <version>${jackson.version}</version>
560         </dependency>
561         <!-- c3p0 is to override epsdk-app-common's c3p0 0.9.5.2 vulnerability -->
562         <dependency>
563             <groupId>com.mchange</groupId>
564             <artifactId>c3p0</artifactId>
565             <version>0.9.5.3</version>
566         </dependency>
567         <dependency>
568             <groupId>io.searchbox</groupId>
569             <artifactId>jest</artifactId>
570             <version>2.0.0</version>
571             <exclusions>
572                 <exclusion>
573                     <groupId>commons-logging</groupId>
574                     <artifactId>commons-logging</artifactId>
575                 </exclusion>
576             </exclusions>
577         </dependency>
578         <dependency>
579             <groupId>javax.servlet</groupId>
580             <artifactId>javax.servlet-api</artifactId>
581             <version>3.1.0</version>
582             <scope>provided</scope>
583         </dependency>
584         <dependency>
585             <groupId>junit</groupId>
586             <artifactId>junit</artifactId>
587             <version>4.12</version>
588             <scope>test</scope>
589         </dependency>
590         <dependency>
591             <groupId>commons-io</groupId>
592             <artifactId>commons-io</artifactId>
593             <version>2.4</version>
594             <!--<scope>test</scope>-->
595         </dependency>
596         <dependency>
597             <groupId>com.google.code.bean-matchers</groupId>
598             <artifactId>bean-matchers</artifactId>
599             <version>0.11</version>
600             <scope>test</scope>
601         </dependency>
602         <dependency>
603             <groupId>org.json</groupId>
604             <artifactId>json</artifactId>
605             <version>20160212</version>
606         </dependency>
607         <dependency>
608             <groupId>org.quartz-scheduler</groupId>
609             <artifactId>quartz</artifactId>
610             <version>2.2.1</version>
611             <exclusions>
612                 <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 -->
613                 <exclusion>
614                     <groupId>c3p0</groupId>
615                     <artifactId>c3p0</artifactId>
616                 </exclusion>
617             </exclusions>
618         </dependency>
619         <!-- bridge to implement commons-logging using slf4j -->
620         <dependency>
621             <groupId>org.slf4j</groupId>
622             <artifactId>jcl-over-slf4j</artifactId>
623             <version>1.7.12</version>
624         </dependency>
625         <dependency>
626             <groupId>org.springframework</groupId>
627             <artifactId>spring-context-support</artifactId>
628             <version>${springframework.version}</version>
629         </dependency>
630         <dependency>
631             <groupId>org.springframework</groupId>
632             <artifactId>spring-core</artifactId>
633             <version>${springframework.version}</version>
634             <exclusions>
635                 <exclusion>
636                     <groupId>commons-logging</groupId>
637                     <artifactId>commons-logging</artifactId>
638                 </exclusion>
639             </exclusions>
640         </dependency>
641         <dependency>
642             <groupId>org.springframework</groupId>
643             <artifactId>spring-test</artifactId>
644             <version>${springframework.version}</version>
645         </dependency>
646         <dependency>
647             <groupId>org.springframework</groupId>
648             <artifactId>spring-tx</artifactId>
649             <version>${springframework.version}</version>
650         </dependency>
651         <dependency>
652             <groupId>org.springframework</groupId>
653             <artifactId>spring-web</artifactId>
654             <version>${springframework.version}</version>
655         </dependency>
656         <dependency>
657             <groupId>org.springframework</groupId>
658             <artifactId>spring-webmvc</artifactId>
659             <version>${springframework.version}</version>
660         </dependency>
661         <dependency>
662             <groupId>org.glassfish.jersey.core</groupId>
663             <artifactId>jersey-client</artifactId>
664             <version>${jersey.version}</version>
665         </dependency>
666         <dependency>
667             <groupId>org.glassfish.jersey.connectors</groupId>
668             <artifactId>jersey-jetty-connector</artifactId>
669             <version>${jersey.version}</version>
670         </dependency>
671         <!--https://stackoverflow.com/questions/44088493/jersey-stopped-working-with-injectionmanagerfactory-not-found-->
672         <dependency>
673             <groupId>org.glassfish.jersey.inject</groupId>
674             <artifactId>jersey-hk2</artifactId>
675             <version>${jersey.version}</version>
676         </dependency>
677         <dependency>
678             <groupId>com.fasterxml.jackson.jaxrs</groupId>
679             <artifactId>jackson-jaxrs-json-provider</artifactId>
680             <version>${jackson.version}</version>
681         </dependency>
682         <dependency>
683             <groupId>commons-beanutils</groupId>
684             <artifactId>commons-beanutils</artifactId>
685         </dependency>
686         <dependency>
687             <groupId>com.googlecode.json-simple</groupId>
688             <artifactId>json-simple</artifactId>
689             <version>1.1.1</version>
690         </dependency>
691         <dependency>
692             <groupId>org.seleniumhq.selenium</groupId>
693             <artifactId>selenium-java</artifactId>
694             <version>2.53.1</version>
695             <scope>test</scope>
696         </dependency>
697         <dependency>
698             <groupId>org.seleniumhq.selenium</groupId>
699             <artifactId>selenium-api</artifactId>
700             <version>2.53.1</version>
701             <scope>test</scope>
702         </dependency>
703         <dependency>
704             <groupId>org.testng</groupId>
705             <artifactId>testng</artifactId>
706             <version>6.14.3</version>
707             <scope>test</scope>
708         </dependency>
709         <dependency>
710             <groupId>org.mockito</groupId>
711             <artifactId>mockito-core</artifactId>
712             <version>2.23.0</version>
713             <scope>test</scope>
714         </dependency>
715         <dependency>
716             <groupId>org.seleniumhq.selenium</groupId>
717             <artifactId>selenium-firefox-driver</artifactId>
718             <version>2.53.1</version>
719         </dependency>
720         <dependency>
721             <groupId>xml-apis</groupId>
722             <artifactId>xml-apis</artifactId>
723             <version>1.4.01</version>
724         </dependency>
725         <dependency>
726             <groupId>org.yaml</groupId>
727             <artifactId>snakeyaml</artifactId>
728             <version>1.16</version>
729         </dependency>
730         <dependency>
731             <groupId>org.skyscreamer</groupId>
732             <artifactId>jsonassert</artifactId>
733             <version>1.5.0</version>
734             <scope>test</scope>
735         </dependency>
736         <dependency>
737             <groupId>org.onap.sdc.sdc-tosca</groupId>
738             <artifactId>sdc-tosca</artifactId>
739             <version>1.4.7</version>
740             <scope>compile</scope>
741         </dependency>
742         <dependency>
743             <groupId>net.javacrumbs.json-unit</groupId>
744             <artifactId>json-unit</artifactId>
745             <version>1.23.0</version>
746             <scope>test</scope>
747         </dependency>
748         <dependency>
749             <groupId>org.glassfish.jersey.media</groupId>
750             <artifactId>jersey-media-json-jackson</artifactId>
751             <version>${jersey.version}</version>
752                 <scope>test</scope>
753         </dependency>
754         <dependency>
755             <groupId>org.apache.commons</groupId>
756             <artifactId>commons-lang3</artifactId>
757             <version>3.6</version>
758         </dependency>
759         <dependency>
760             <groupId>org.apache.commons</groupId>
761             <artifactId>commons-text</artifactId>
762             <version>1.1</version>
763         </dependency>
764         <dependency>
765             <groupId>org.apache.commons</groupId>
766             <artifactId>commons-proxy</artifactId>
767             <version>1.0</version>
768         </dependency>
769         <dependency>
770             <groupId>org.hamcrest</groupId>
771             <artifactId>java-hamcrest</artifactId>
772             <version>2.0.0.0</version>
773             <scope>test</scope>
774         </dependency>
775         <dependency>
776             <groupId>org.togglz</groupId>
777             <artifactId>togglz-spring-core</artifactId>
778             <version>2.5.0.Final</version>
779         </dependency>
780         <dependency>
781             <groupId>com.h2database</groupId>
782             <artifactId>h2</artifactId>
783             <version>1.4.196</version>
784             <scope>test</scope>
785         </dependency>
786         <dependency>
787             <groupId>javax.xml.bind</groupId>
788             <artifactId>jaxb-api</artifactId>
789             <version>2.2.11</version>
790         </dependency>
791
792         <dependency>
793             <groupId>org.assertj</groupId>
794             <artifactId>assertj-core</artifactId>
795             <version>3.10.0</version>
796             <scope>compile</scope>
797         </dependency>
798         <dependency>
799             <groupId>com.google.guava</groupId>
800             <artifactId>guava</artifactId>
801         </dependency>
802     </dependencies>
803 </project>