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