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