blob: 34699f98c6a83dc5142a3c96fc58b7db334d5cf6 [file] [log] [blame]
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +02001<?xml version="1.0"?>
2<project
biniek6f2b2082018-12-17 11:18:05 +01003 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>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +02006
biniek6f2b2082018-12-17 11:18:05 +01007 <!-- 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>
Ittay Stern22866192019-08-13 18:45:23 +030012 <version>5.0.1-SNAPSHOT</version>
biniek6f2b2082018-12-17 11:18:05 +010013 <packaging>war</packaging>
14 <name>VID Common</name>
15 <description>VID Common code for opensource version</description>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020016
Ittay Stern9f9e9b22019-02-28 12:09:45 +020017 <parent>
18 <groupId>org.onap.oparent</groupId>
19 <artifactId>oparent</artifactId>
Jessica Wagantall97bec3c2019-05-11 01:01:20 +030020 <version>2.0.0</version>
Ittay Stern9f9e9b22019-02-28 12:09:45 +020021 <relativePath/>
22 </parent>
23
biniek6f2b2082018-12-17 11:18:05 +010024 <properties>
25 <encoding>UTF-8</encoding>
26 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
27 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Eylon Malind36ae5e2019-08-07 18:36:49 +030028 <epsdk.version>2.5.0</epsdk.version>
Einat Vinouze83157b32019-07-11 16:25:44 +030029 <springframework.version>5.1.9.RELEASE</springframework.version>
Einat Vinouzed7192592019-07-07 14:15:07 +030030 <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 -->
biniek6f2b2082018-12-17 11:18:05 +010034 <hibernate.version>4.3.11.Final</hibernate.version>
Einat Vinouze83157b32019-07-11 16:25:44 +030035 <jackson.version>2.9.9</jackson.version>
36 <jersey.version>2.29</jersey.version>
Ittay Stern6ad41e32018-12-31 17:21:27 +020037 <surefire.version>2.22.1</surefire.version>
Einat Vinouze83157b32019-07-11 16:25:44 +030038 <selenium.version>3.141.59</selenium.version>
Ittay Sterneda81402019-02-26 06:32:43 +020039 <sonar.coverage.exclusions>**/webapp/**/*,**/*.js</sonar.coverage.exclusions>
Ittay Stern6ad41e32018-12-31 17:21:27 +020040
biniek6f2b2082018-12-17 11:18:05 +010041 <!-- Skip assembling the zip by default -->
42 <skipassembly>true</skipassembly>
biniek6f2b2082018-12-17 11:18:05 +010043 <nexusproxy>https://nexus.onap.org</nexusproxy>
Ittay Sternb93b96b2019-06-19 14:39:39 +030044 <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath>
45 <releaseNexusPath>content/repositories/releases/</releaseNexusPath>
46 <stagingNexusPath>content/repositories/staging/</stagingNexusPath>
47 <sitePath>content/sites/site/org/onap/vid/${project.version}</sitePath>
Ittay Stern6ad41e32018-12-31 17:21:27 +020048
49 <aspectj.version>1.8.9</aspectj.version>
Einat Vinouzef486e802019-07-11 16:25:44 +030050 <kotlin.version>1.3.30</kotlin.version>
Ittay Stern6ad41e32018-12-31 17:21:27 +020051 <kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
52
golabekec4f9542019-01-28 09:34:48 +010053 <eirslett.version>1.6</eirslett.version>
Ittay Sternf7926712019-07-07 19:23:03 +030054 <node.version>v8.9.4</node.version>
55 <npm.version>5.6.0</npm.version>
golabekec4f9542019-01-28 09:34:48 +010056
Ittay Sternd6544de2019-07-01 17:40:20 +030057 <!-- override using -Drelease_version=foo -Dpatch_version=bar -->
Ittay Stern2f1394c2019-07-31 17:10:44 +030058 <release_version>${env.release_version}</release_version>
Ittay Sternd6544de2019-07-01 17:40:20 +030059 <patch_version/>
Einat Vinouzef486e802019-07-11 16:25:44 +030060
61 <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>
62
biniek6f2b2082018-12-17 11:18:05 +010063 </properties>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020064
65
biniek6f2b2082018-12-17 11:18:05 +010066 <!-- this should be commented for local debugging -->
67 <!-- <deployenv>local</deployenv> -->
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020068
biniek6f2b2082018-12-17 11:18:05 +010069 <repositories>
70 <repository>
71 <id>ecomp-releases</id>
72 <name>VID Release Repository</name>
Ittay Sternb93b96b2019-06-19 14:39:39 +030073 <url>${nexusproxy}/${releaseNexusPath}</url>
biniek6f2b2082018-12-17 11:18:05 +010074 </repository>
75 <repository>
76 <id>ecomp-snapshots</id>
77 <name>VID Snapshot Repository</name>
Ittay Sternb93b96b2019-06-19 14:39:39 +030078 <url>${nexusproxy}/${snapshotNexusPath}</url>
biniek6f2b2082018-12-17 11:18:05 +010079 </repository>
80 <repository>
81 <id>ecomp-staging</id>
82 <name>VID Staging Repository</name>
Ittay Sternb93b96b2019-06-19 14:39:39 +030083 <url>${nexusproxy}/${stagingNexusPath}</url>
biniek6f2b2082018-12-17 11:18:05 +010084 </repository>
85 <repository>
86 <!-- Snapshots repository has ECOMP snapshot artifacts -->
87 <id>oss-snapshots</id>
88 <name>oss Central - Snapshots</name>
89 <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url>
90 </repository>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020091
biniek6f2b2082018-12-17 11:18:05 +010092 </repositories>
93 <distributionManagement>
94 <repository>
95 <id>ecomp-releases</id>
96 <name>VID Release Repository</name>
97 <url>${nexusproxy}/${releaseNexusPath}</url>
98 </repository>
99 <snapshotRepository>
100 <id>ecomp-snapshots</id>
101 <name>VID Snapshot Repository</name>
102 <url>${nexusproxy}/${snapshotNexusPath}</url>
103 </snapshotRepository>
104 <!-- added for javadoc -->
105 <site>
106 <id>ecomp-site</id>
Ittay Sternb93b96b2019-06-19 14:39:39 +0300107 <url>dav:${nexusproxy}/${sitePath}</url>
biniek6f2b2082018-12-17 11:18:05 +0100108 </site>
109 </distributionManagement>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200110
biniek6f2b2082018-12-17 11:18:05 +0100111 <build>
112 <finalName>vid-common</finalName>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200113
biniek6f2b2082018-12-17 11:18:05 +0100114 <plugins>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200115
116 <plugin>
117 <artifactId>kotlin-maven-plugin</artifactId>
118 <groupId>org.jetbrains.kotlin</groupId>
119 <version>${kotlin.version}</version>
120 <executions>
121 <execution>
122 <id>compile</id>
123 <goals> <goal>compile</goal> </goals>
124 <configuration>
125 <sourceDirs>
126 <sourceDir>${project.basedir}/src/main/java</sourceDir>
127 </sourceDirs>
128 </configuration>
129 </execution>
130 <execution>
131 <id>test-compile</id>
132 <goals> <goal>test-compile</goal> </goals>
133 <configuration>
134 <sourceDirs>
135 <sourceDir>${project.basedir}/src/test/java</sourceDir>
136 </sourceDirs>
137 </configuration>
138 </execution>
139 </executions>
140 </plugin>
biniek6f2b2082018-12-17 11:18:05 +0100141 <plugin>
Ittay Stern6c8df5b2019-08-05 21:21:02 +0300142 <groupId>org.sonarsource.scanner.maven</groupId>
143 <artifactId>sonar-maven-plugin</artifactId>
144 <version>3.6.0.1398</version>
145 </plugin>
146 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100147 <groupId>org.jacoco</groupId>
148 <artifactId>jacoco-maven-plugin</artifactId>
Ittay Stern6c8df5b2019-08-05 21:21:02 +0300149 <version>0.8.4</version>
biniek6f2b2082018-12-17 11:18:05 +0100150 <executions>
151 <execution>
152 <id>default-prepare-agent</id>
153 <goals>
154 <goal>prepare-agent</goal>
155 </goals>
156 </execution>
157 <execution>
158 <id>default-report</id>
159 <goals>
160 <goal>report</goal>
161 </goals>
162 </execution>
163 </executions>
164 </plugin>
165 <plugin>
166 <groupId>org.apache.tomcat.maven</groupId>
167 <artifactId>tomcat6-maven-plugin</artifactId>
168 <version>2.2</version>
169 </plugin>
170 <plugin>
171 <groupId>org.apache.tomcat.maven</groupId>
172 <artifactId>tomcat7-maven-plugin</artifactId>
173 <version>2.2</version>
174 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200175
biniek6f2b2082018-12-17 11:18:05 +0100176 <plugin>
golabekec4f9542019-01-28 09:34:48 +0100177 <groupId>com.github.eirslett</groupId>
178 <artifactId>frontend-maven-plugin</artifactId>
179 <version>${eirslett.version}</version>
180 <executions>
181 <execution>
182 <id>install node and npm</id>
183 <goals>
184 <goal>install-node-and-npm</goal>
185 </goals>
186 <phase>generate-resources</phase>
187 <configuration>
Ittay Sternf7926712019-07-07 19:23:03 +0300188 <npmVersion>${npm.version}</npmVersion>
golabekec4f9542019-01-28 09:34:48 +0100189 <nodeVersion>${node.version}</nodeVersion>
190 </configuration>
191 </execution>
192 <execution>
Ittay Stern1124e962019-06-18 07:50:50 +0300193 <id>npm config list</id>
194 <configuration>
195 <arguments>config ls -l</arguments>
196 </configuration>
197 <goals>
198 <goal>npm</goal>
199 </goals>
200 <phase>generate-resources</phase>
201 </execution>
202 <execution>
Ittay Stern779c51d2019-05-16 15:47:08 +0300203 <id>npm install</id>
204 <configuration>
205 <arguments>install</arguments>
206 </configuration>
207 <goals>
208 <goal>npm</goal>
209 </goals>
210 <phase>generate-resources</phase>
211 </execution>
212 <execution>
golabekec4f9542019-01-28 09:34:48 +0100213 <id>npm run-script build</id>
214 <configuration>
215 <arguments>run-script build</arguments>
216 </configuration>
217 <goals>
218 <goal>npm</goal>
219 </goals>
220 <phase>generate-resources</phase>
221 </execution>
222 </executions>
223 </plugin>
224
225 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100226 <groupId>org.apache.maven.plugins</groupId>
227 <artifactId>maven-compiler-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200228 <version>3.5.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100229 <configuration>
230 <source>1.8</source>
231 <target>1.8</target>
232 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200233
234 <executions>
235 <!-- Replacing default-compile as it is treated specially by maven -->
236 <execution>
237 <id>default-compile</id>
238 <phase>none</phase>
239 </execution>
240 <!-- Replacing default-testCompile as it is treated specially by maven -->
241 <execution>
242 <id>default-testCompile</id>
243 <phase>none</phase>
244 </execution>
245 <execution>
246 <id>java-compile</id>
247 <phase>compile</phase>
248 <goals> <goal>compile</goal> </goals>
249 </execution>
250 <execution>
251 <id>java-test-compile</id>
252 <phase>test-compile</phase>
253 <goals> <goal>testCompile</goal> </goals>
254 </execution>
255 </executions>
256
biniek6f2b2082018-12-17 11:18:05 +0100257 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200258
biniek6f2b2082018-12-17 11:18:05 +0100259 <plugin>
Ittay Sternd6544de2019-07-01 17:40:20 +0300260 <groupId>com.google.code.maven-replacer-plugin</groupId>
261 <artifactId>replacer</artifactId>
262 <version>1.5.3</version>
263 <executions>
264 <execution>
265 <phase>prepare-package</phase>
266 <goals>
267 <goal>replace</goal>
268 </goals>
269 </execution>
270 </executions>
271 <configuration>
272 <regex>false</regex>
273 <file>${project.basedir}/src/main/webapp/app/vid/scripts/constants/version.json</file>
274 <replacements>
275 <replacement>
276 <token>BUILD_NUMBER</token>
Ittay Stern2f1394c2019-07-31 17:10:44 +0300277 <value>${release_version}.${patch_version}.${env.BUILD_NUMBER}</value>
Ittay Sternd6544de2019-07-01 17:40:20 +0300278 </replacement>
279 </replacements>
280 </configuration>
281 </plugin>
282
283 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100284 <groupId>org.apache.maven.plugins</groupId>
285 <artifactId>maven-surefire-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200286 <version>${surefire.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100287 <configuration>
biniek6f2b2082018-12-17 11:18:05 +0100288 <includes>
289 <include>**/Test*.java</include>
290 <include>**/*Test.java</include>
291 <include>**/*TestCase.java</include>
292 </includes>
293 <excludes>
294 <exclude>**/selenium/*.java</exclude>
295 <exclude>**/integrationTest/*.java</exclude>
296 </excludes>
297 <additionalClasspathElements>
298 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
299 </additionalClasspathElements>
300 <systemPropertyVariables>
301 <container.classpath>classpath:</container.classpath>
302 </systemPropertyVariables>
303 <useSystemClassLoader>false</useSystemClassLoader>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200304 <properties>
305 <property>
306 <!-- avoid running JUnit tests within surefire-testng provider -->
307 <name>junit</name>
308 <value>false</value>
309 </property>
Einat Vinouzef486e802019-07-11 16:25:44 +0300310 <property>
311 <name>usedefaultlisteners</name>
312 <value>false</value>
313 </property>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200314 </properties>
315 <threadCount>1</threadCount>
biniek6f2b2082018-12-17 11:18:05 +0100316 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200317 <dependencies>
318 <!-- Running TestNG and JUnit Tests -->
319 <!-- https://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html -->
320 <dependency>
321 <groupId>org.apache.maven.surefire</groupId>
322 <artifactId>surefire-junit47</artifactId>
323 <version>${surefire.version}</version>
324 </dependency>
325 <dependency>
326 <groupId>org.apache.maven.surefire</groupId>
327 <artifactId>surefire-testng</artifactId>
328 <version>${surefire.version}</version>
329 </dependency>
330 </dependencies>
biniek6f2b2082018-12-17 11:18:05 +0100331 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200332
biniek6f2b2082018-12-17 11:18:05 +0100333 <plugin>
334 <artifactId>maven-assembly-plugin</artifactId>
335 <configuration>
336 <skipAssembly>${skipassembly}</skipAssembly>
337 <descriptors>
338 <descriptor>${basedir}/distribution.xml</descriptor>
339 </descriptors>
340 </configuration>
341 <executions>
342 <execution>
343 <id>make-assembly</id>
344 <phase>package</phase>
345 <goals>
346 <goal>single</goal>
347 </goals>
348 </execution>
349 </executions>
350 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200351
352
biniek6f2b2082018-12-17 11:18:05 +0100353 <plugin>
354 <groupId>org.apache.maven.plugins</groupId>
355 <artifactId>maven-war-plugin</artifactId>
356 <version>3.0.0</version>
357 <configuration>
358 <!-- Build a jar with all the Java classes -->
359 <attachClasses>true</attachClasses>
360 <!-- Do not put any jars in the war -->
361 <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
362 </configuration>
363 </plugin>
364 <plugin>
365 <groupId>org.apache.maven.plugins</groupId>
366 <artifactId>maven-site-plugin</artifactId>
367 <version>3.6</version>
368 <dependencies>
369 <dependency>
370 <groupId>org.apache.maven.wagon</groupId>
371 <artifactId>wagon-webdav-jackrabbit</artifactId>
372 <version>2.10</version>
373 </dependency>
374 </dependencies>
375 </plugin>
376 <plugin>
377 <groupId>pl.project13.maven</groupId>
378 <artifactId>git-commit-id-plugin</artifactId>
379 <version>2.2.4</version>
380 <executions>
381 <execution>
382 <id>get-the-git-infos</id>
383 <goals>
384 <goal>revision</goal>
385 </goals>
386 </execution>
387 </executions>
388 <configuration>
389 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
390 <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
391 <dateFormatTimeZone>${user.timezone}</dateFormatTimeZone>
392 <generateGitPropertiesFile>true</generateGitPropertiesFile>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200393 <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
biniek6f2b2082018-12-17 11:18:05 +0100394 <includeOnlyProperties>
395 <includeOnlyProperty>^git.commit.id$</includeOnlyProperty>
396 <includeOnlyProperty>^git.commit.message.short$</includeOnlyProperty>
397 <includeOnlyProperty>^git.commit.time$</includeOnlyProperty>
398 </includeOnlyProperties>
399 </configuration>
400 </plugin>
Ittay Sterne0a10282019-02-27 17:32:09 +0200401
402 <plugin>
403 <!--
404 Replace phase "none" with "process-sources" to enable.
405 Set organizationName as desired.
406 Then run `mvn license:check-file-header`, or even `mvn
407 license:update-file-header`.
408 -->
409 <groupId>org.codehaus.mojo</groupId>
410 <artifactId>license-maven-plugin</artifactId>
411 <version>1.17</version>
412
413 <executions>
414 <execution>
415 <id>first</id>
416 <goals>
417 <goal>update-file-header</goal>
418 </goals>
419 <!-- replace phase "none" with "process-sources" to enable -->
420 <phase>none</phase>
421 </execution>
422 </executions>
423
424 <configuration>
425 <canUpdateCopyright>false</canUpdateCopyright>
426 <canUpdateDescription>false</canUpdateDescription>
427 <licenseName>apache_v2</licenseName>
428 <processStartTag>============LICENSE_START=======================================================</processStartTag>
429 <processEndTag>============LICENSE_END=========================================================</processEndTag>
430 <sectionDelimiter>================================================================================</sectionDelimiter>
431 <projectName>VID</projectName>
432 <inceptionYear>2017</inceptionYear>
433 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
434 <canUpdateLicense>true</canUpdateLicense>
435 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
436 <emptyLineAfterHeader>true</emptyLineAfterHeader>
437 <verbose>false</verbose>
438
439 <includes>
440 <include>**/*.java</include>
441 <include>**/*.kt</include>
442 <include>**/*.jsp</include>
443 <include>**/*.xml</include>
444 <include>**/*.js</include>
445 <include>**/*.ts</include>
446 <include>**/*.html</include>
447 <include>**/*.css</include>
448 <include>**/*.sql</include>
449 </includes>
450
451 <extraExtensions>
452 <sql>mysql</sql>
453 </extraExtensions>
454
455 <roots>
456 <root>src/main</root>
457 <root>src/test</root>
458 </roots>
459
460 <excludes>
461 <exclude>**/app/vid/external/**/*</exclude>
462 <exclude>**/main/webapp/WEB-INF/**/*</exclude>
463 <exclude>**/test/resources/WEB-INF/**/*</exclude>
464 <exclude>**/app/vid/scripts/angular-ui-tree.js</exclude>
465 </excludes>
466
467 </configuration>
468 </plugin>
469
biniek6f2b2082018-12-17 11:18:05 +0100470 </plugins>
471 </build>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200472
biniek6f2b2082018-12-17 11:18:05 +0100473 <reporting>
474 <plugins>
475 <plugin>
476 <groupId>org.apache.maven.plugins</groupId>
477 <artifactId>maven-javadoc-plugin</artifactId>
478 <version>2.10.4</version>
479 <configuration>
480 <failOnError>false</failOnError>
481 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
482 <docletArtifact>
483 <groupId>org.umlgraph</groupId>
484 <artifactId>umlgraph</artifactId>
485 <version>5.6</version>
486 </docletArtifact>
487 <additionalparam>-views</additionalparam>
488 <useStandardDocletOptions>true</useStandardDocletOptions>
489 </configuration>
490 </plugin>
491 </plugins>
492 </reporting>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200493
biniek6f2b2082018-12-17 11:18:05 +0100494 <dependencies>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200495
biniek6f2b2082018-12-17 11:18:05 +0100496 <dependency>
497 <groupId>com.opencsv</groupId>
498 <artifactId>opencsv</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300499 <version>4.6</version>
biniek6f2b2082018-12-17 11:18:05 +0100500 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200501
biniek6f2b2082018-12-17 11:18:05 +0100502 <!-- HTTP client -->
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200503
biniek6f2b2082018-12-17 11:18:05 +0100504 <dependency>
505 <groupId>io.joshworks.unirest</groupId>
506 <artifactId>unirest-java</artifactId>
507 <version>0.2.1</version>
508 </dependency>
509 <dependency>
510 <groupId>org.apache.httpcomponents</groupId>
511 <artifactId>httpclient</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300512 <version>4.5.9</version>
biniek6f2b2082018-12-17 11:18:05 +0100513 </dependency>
514 <dependency>
515 <groupId>org.apache.httpcomponents</groupId>
516 <artifactId>httpasyncclient</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300517 <version>4.1.4</version>
biniek6f2b2082018-12-17 11:18:05 +0100518 </dependency>
519 <dependency>
520 <groupId>org.apache.httpcomponents</groupId>
521 <artifactId>httpmime</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300522 <version>4.5.9</version>
biniek6f2b2082018-12-17 11:18:05 +0100523 </dependency>
524 <dependency>
525 <groupId>com.xebialabs.restito</groupId>
526 <artifactId>restito</artifactId>
527 <version>0.9.3</version>
528 <scope>test</scope>
529 </dependency>
kurczewsf477d1d2019-03-20 09:52:12 +0100530 <dependency>
531 <groupId>org.jeasy</groupId>
532 <artifactId>easy-random-core</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300533 <version>4.0.0</version>
kurczewsf477d1d2019-03-20 09:52:12 +0100534 <scope>test</scope>
535 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200536
biniek6f2b2082018-12-17 11:18:05 +0100537 <!-- Helpers -->
538 <dependency>
539 <groupId>io.vavr</groupId>
540 <artifactId>vavr</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300541 <version>0.10.2</version>
biniek6f2b2082018-12-17 11:18:05 +0100542 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200543
biniek6f2b2082018-12-17 11:18:05 +0100544 <!-- SDK overlay war -->
545 <dependency>
546 <groupId>org.onap.portal.sdk</groupId>
547 <artifactId>epsdk-app-overlay</artifactId>
548 <version>${epsdk.version}</version>
549 <type>war</type>
550 </dependency>
551 <dependency>
552 <groupId>org.onap.portal.sdk</groupId>
553 <artifactId>epsdk-app-common</artifactId>
554 <version>${epsdk.version}</version>
555 <type>jar</type>
556 </dependency>
557
558 <dependency>
559 <groupId>org.onap.portal.sdk</groupId>
560 <artifactId>epsdk-core</artifactId>
561 <version>${epsdk.version}</version>
562 </dependency>
563 <dependency>
564 <groupId>org.onap.portal.sdk</groupId>
565 <artifactId>epsdk-analytics</artifactId>
566 <version>${epsdk.version}</version>
567 <exclusions>
568 <exclusion>
569 <groupId>com.lowagie</groupId>
570 <artifactId>itext</artifactId>
571 </exclusion>
572 </exclusions>
573 </dependency>
574 <dependency>
575 <groupId>org.onap.portal.sdk</groupId>
576 <artifactId>epsdk-workflow</artifactId>
577 <version>${epsdk.version}</version>
578 </dependency>
579 <dependency>
580 <groupId>com.att.eelf</groupId>
581 <artifactId>eelf-core</artifactId>
582 <version>1.0.0</version>
583 <exclusions>
584 <exclusion>
585 <artifactId>powermock-api-mockito</artifactId>
586 <groupId>org.powermock</groupId>
587 </exclusion>
588 </exclusions>
589 </dependency>
590 <dependency>
591 <groupId>ch.qos.logback</groupId>
biniek6f2b2082018-12-17 11:18:05 +0100592 <artifactId>logback-classic</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100593 </dependency>
594
Ittay Stern6ad41e32018-12-31 17:21:27 +0200595 <dependency>
596 <groupId>org.jetbrains.kotlin</groupId>
597 <artifactId>kotlin-stdlib-jdk8</artifactId>
598 <version>${kotlin.version}</version>
599 </dependency>
600
biniek6f2b2082018-12-17 11:18:05 +0100601 <!-- Mapper -->
602 <dependency>
603 <groupId>com.fasterxml.jackson.core</groupId>
604 <artifactId>jackson-annotations</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200605 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100606 </dependency>
607 <dependency>
608 <groupId>com.fasterxml.jackson.core</groupId>
609 <artifactId>jackson-core</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200610 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100611 </dependency>
612 <dependency>
613 <groupId>com.fasterxml.jackson.core</groupId>
614 <artifactId>jackson-databind</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200615 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100616 </dependency>
617 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200618 <groupId>com.fasterxml.jackson.module</groupId>
619 <artifactId>jackson-module-kotlin</artifactId>
620 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100621 </dependency>
Ittay Stern2687d312019-02-21 17:26:33 +0200622 <!-- c3p0 is to override epsdk-app-common's c3p0 0.9.5.2 vulnerability -->
biniek6f2b2082018-12-17 11:18:05 +0100623 <dependency>
624 <groupId>com.mchange</groupId>
625 <artifactId>c3p0</artifactId>
golabek22b96132019-04-23 11:11:12 +0200626 <version>0.9.5.4</version>
biniek6f2b2082018-12-17 11:18:05 +0100627 </dependency>
628 <dependency>
629 <groupId>io.searchbox</groupId>
630 <artifactId>jest</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300631 <version>6.3.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100632 <exclusions>
633 <exclusion>
634 <groupId>commons-logging</groupId>
635 <artifactId>commons-logging</artifactId>
636 </exclusion>
637 </exclusions>
638 </dependency>
639 <dependency>
640 <groupId>javax.servlet</groupId>
641 <artifactId>javax.servlet-api</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300642 <version>4.0.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100643 <scope>provided</scope>
644 </dependency>
645 <dependency>
646 <groupId>junit</groupId>
647 <artifactId>junit</artifactId>
648 <version>4.12</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200649 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100650 </dependency>
651 <dependency>
652 <groupId>commons-io</groupId>
653 <artifactId>commons-io</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300654 <version>2.6</version>
biniek6f2b2082018-12-17 11:18:05 +0100655 <!--<scope>test</scope>-->
656 </dependency>
657 <dependency>
658 <groupId>com.google.code.bean-matchers</groupId>
659 <artifactId>bean-matchers</artifactId>
660 <version>0.11</version>
661 <scope>test</scope>
662 </dependency>
663 <dependency>
664 <groupId>org.json</groupId>
665 <artifactId>json</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300666 <version>20190722</version>
biniek6f2b2082018-12-17 11:18:05 +0100667 </dependency>
668 <dependency>
669 <groupId>org.quartz-scheduler</groupId>
670 <artifactId>quartz</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300671 <version>2.3.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100672 <exclusions>
673 <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 -->
674 <exclusion>
675 <groupId>c3p0</groupId>
676 <artifactId>c3p0</artifactId>
677 </exclusion>
678 </exclusions>
679 </dependency>
680 <!-- bridge to implement commons-logging using slf4j -->
681 <dependency>
682 <groupId>org.slf4j</groupId>
683 <artifactId>jcl-over-slf4j</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300684 <version>1.7.27</version>
biniek6f2b2082018-12-17 11:18:05 +0100685 </dependency>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200686
687 <!-- springframework to override epsdk-app-common's and epsdk-core's versions -->
biniek6f2b2082018-12-17 11:18:05 +0100688 <dependency>
689 <groupId>org.springframework</groupId>
690 <artifactId>spring-core</artifactId>
691 <version>${springframework.version}</version>
692 <exclusions>
693 <exclusion>
694 <groupId>commons-logging</groupId>
695 <artifactId>commons-logging</artifactId>
696 </exclusion>
697 </exclusions>
698 </dependency>
699 <dependency>
700 <groupId>org.springframework</groupId>
701 <artifactId>spring-test</artifactId>
702 <version>${springframework.version}</version>
703 </dependency>
704 <dependency>
705 <groupId>org.springframework</groupId>
706 <artifactId>spring-tx</artifactId>
707 <version>${springframework.version}</version>
708 </dependency>
709 <dependency>
710 <groupId>org.springframework</groupId>
711 <artifactId>spring-web</artifactId>
712 <version>${springframework.version}</version>
713 </dependency>
714 <dependency>
715 <groupId>org.springframework</groupId>
716 <artifactId>spring-webmvc</artifactId>
717 <version>${springframework.version}</version>
718 </dependency>
719 <dependency>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200720 <groupId>org.springframework</groupId>
721 <artifactId>spring-context-support</artifactId>
722 <version>${springframework.version}</version>
723 </dependency>
724 <dependency>
725 <groupId>org.springframework</groupId>
726 <artifactId>spring-orm</artifactId>
Einat Vinouzed7192592019-07-07 14:15:07 +0300727 <version>${springframework.orm.version}</version>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200728 </dependency>
729 <dependency>
730 <groupId>org.springframework</groupId>
731 <artifactId>spring-aop</artifactId>
732 <version>${springframework.version}</version>
733 </dependency>
734
735 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100736 <groupId>org.glassfish.jersey.core</groupId>
737 <artifactId>jersey-client</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200738 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100739 </dependency>
740 <dependency>
741 <groupId>org.glassfish.jersey.connectors</groupId>
742 <artifactId>jersey-jetty-connector</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200743 <version>${jersey.version}</version>
744 </dependency>
745 <!--https://stackoverflow.com/questions/44088493/jersey-stopped-working-with-injectionmanagerfactory-not-found-->
746 <dependency>
747 <groupId>org.glassfish.jersey.inject</groupId>
748 <artifactId>jersey-hk2</artifactId>
749 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100750 </dependency>
751 <dependency>
752 <groupId>com.fasterxml.jackson.jaxrs</groupId>
753 <artifactId>jackson-jaxrs-json-provider</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200754 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100755 </dependency>
756 <dependency>
757 <groupId>commons-beanutils</groupId>
758 <artifactId>commons-beanutils</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100759 </dependency>
760 <dependency>
761 <groupId>com.googlecode.json-simple</groupId>
762 <artifactId>json-simple</artifactId>
763 <version>1.1.1</version>
764 </dependency>
765 <dependency>
766 <groupId>org.seleniumhq.selenium</groupId>
767 <artifactId>selenium-java</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300768 <version>${selenium.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100769 <scope>test</scope>
770 </dependency>
771 <dependency>
772 <groupId>org.seleniumhq.selenium</groupId>
773 <artifactId>selenium-api</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300774 <version>${selenium.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100775 <scope>test</scope>
776 </dependency>
777 <dependency>
778 <groupId>org.testng</groupId>
779 <artifactId>testng</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200780 <version>6.14.3</version>
biniek6f2b2082018-12-17 11:18:05 +0100781 <scope>test</scope>
782 </dependency>
783 <dependency>
784 <groupId>org.mockito</groupId>
785 <artifactId>mockito-core</artifactId>
786 <version>2.23.0</version>
787 <scope>test</scope>
788 </dependency>
789 <dependency>
790 <groupId>org.seleniumhq.selenium</groupId>
791 <artifactId>selenium-firefox-driver</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300792 <version>${selenium.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100793 </dependency>
794 <dependency>
795 <groupId>xml-apis</groupId>
796 <artifactId>xml-apis</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300797 <version>2.0.2</version>
biniek6f2b2082018-12-17 11:18:05 +0100798 </dependency>
799 <dependency>
800 <groupId>org.yaml</groupId>
801 <artifactId>snakeyaml</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300802 <version>1.24</version>
biniek6f2b2082018-12-17 11:18:05 +0100803 </dependency>
804 <dependency>
805 <groupId>org.skyscreamer</groupId>
806 <artifactId>jsonassert</artifactId>
807 <version>1.5.0</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200808 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100809 </dependency>
810 <dependency>
811 <groupId>org.onap.sdc.sdc-tosca</groupId>
812 <artifactId>sdc-tosca</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300813 <version>1.6.0</version>
biniek6f2b2082018-12-17 11:18:05 +0100814 <scope>compile</scope>
815 </dependency>
816 <dependency>
817 <groupId>net.javacrumbs.json-unit</groupId>
818 <artifactId>json-unit</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300819 <version>2.8.0</version>
biniek6f2b2082018-12-17 11:18:05 +0100820 <scope>test</scope>
821 </dependency>
822 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200823 <groupId>org.glassfish.jersey.media</groupId>
824 <artifactId>jersey-media-json-jackson</artifactId>
825 <version>${jersey.version}</version>
826 <scope>test</scope>
827 </dependency>
828 <dependency>
829 <groupId>org.apache.commons</groupId>
830 <artifactId>commons-lang3</artifactId>
Einat Vinouzee601bbd2019-07-16 17:17:36 +0300831 <version>3.9</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200832 </dependency>
833 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100834 <groupId>org.apache.commons</groupId>
835 <artifactId>commons-text</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300836 <version>1.7</version>
biniek6f2b2082018-12-17 11:18:05 +0100837 </dependency>
838 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200839 <groupId>org.apache.commons</groupId>
840 <artifactId>commons-proxy</artifactId>
841 <version>1.0</version>
842 </dependency>
843 <dependency>
Eylon Malind36ae5e2019-08-07 18:36:49 +0300844 <groupId>org.apache.commons</groupId>
845 <artifactId>commons-collections4</artifactId>
846 <version>4.4</version>
847 </dependency>
848 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100849 <groupId>org.hamcrest</groupId>
850 <artifactId>java-hamcrest</artifactId>
851 <version>2.0.0.0</version>
852 <scope>test</scope>
853 </dependency>
854 <dependency>
855 <groupId>org.togglz</groupId>
856 <artifactId>togglz-spring-core</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300857 <version>2.6.1.Final</version>
biniek6f2b2082018-12-17 11:18:05 +0100858 </dependency>
859 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200860 <groupId>com.h2database</groupId>
861 <artifactId>h2</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300862 <version>1.4.199</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200863 <scope>test</scope>
864 </dependency>
865 <dependency>
866 <groupId>javax.xml.bind</groupId>
867 <artifactId>jaxb-api</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300868 <version>2.3.1</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200869 </dependency>
870
871 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100872 <groupId>org.assertj</groupId>
873 <artifactId>assertj-core</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300874 <version>3.13.2</version>
kurczewsb1d73932019-05-17 09:10:27 +0200875 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100876 </dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200877 <dependency>
878 <groupId>com.google.guava</groupId>
879 <artifactId>guava</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300880 <version>28.0-jre</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200881 </dependency>
Wojciech Sliwka86683c52019-04-09 14:57:02 +0200882 <dependency>
883 <groupId>io.springfox</groupId>
884 <artifactId>springfox-swagger2</artifactId>
885 <version>2.9.2</version>
886 </dependency>
Einat Vinouzee601bbd2019-07-16 17:17:36 +0300887 <dependency>
888 <groupId>org.apache.maven</groupId>
889 <artifactId>maven-artifact</artifactId>
890 <version>3.6.1</version>
891 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200892 </dependencies>
893</project>