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