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