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