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