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