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