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