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