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