blob: 7f2b27c9fa41a09ae16fb1d8fde5edabbb27c5b4 [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 Stern02a9aa82019-09-15 11:12:03 +030012 <version>5.0.3-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>
Amichai Hemli98794612019-09-16 10:53:47 +030036 <jackson.databind.version>2.9.9.3</jackson.databind.version>
Einat Vinouze83157b32019-07-11 16:25:44 +030037 <jersey.version>2.29</jersey.version>
Ittay Stern6ad41e32018-12-31 17:21:27 +020038 <surefire.version>2.22.1</surefire.version>
Einat Vinouze83157b32019-07-11 16:25:44 +030039 <selenium.version>3.141.59</selenium.version>
Ittay Sterneda81402019-02-26 06:32:43 +020040 <sonar.coverage.exclusions>**/webapp/**/*,**/*.js</sonar.coverage.exclusions>
Ittay Stern6ad41e32018-12-31 17:21:27 +020041
Ittay Stern9e506792019-08-27 12:22:05 +030042 <!--Specify path to load jacoco xml report, as Sonar can't load Kotlin coverage from binary report. -->
43 <sonar.coverage.jacoco.xmlReportPaths>
44 ${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml
45 </sonar.coverage.jacoco.xmlReportPaths>
46
biniek6f2b2082018-12-17 11:18:05 +010047 <!-- Skip assembling the zip by default -->
48 <skipassembly>true</skipassembly>
biniek6f2b2082018-12-17 11:18:05 +010049 <nexusproxy>https://nexus.onap.org</nexusproxy>
Ittay Sternb93b96b2019-06-19 14:39:39 +030050 <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath>
51 <releaseNexusPath>content/repositories/releases/</releaseNexusPath>
52 <stagingNexusPath>content/repositories/staging/</stagingNexusPath>
53 <sitePath>content/sites/site/org/onap/vid/${project.version}</sitePath>
Ittay Stern6ad41e32018-12-31 17:21:27 +020054
55 <aspectj.version>1.8.9</aspectj.version>
Einat Vinouzef486e802019-07-11 16:25:44 +030056 <kotlin.version>1.3.30</kotlin.version>
Ittay Stern6ad41e32018-12-31 17:21:27 +020057 <kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
58
golabekec4f9542019-01-28 09:34:48 +010059 <eirslett.version>1.6</eirslett.version>
Ittay Sternf7926712019-07-07 19:23:03 +030060 <node.version>v8.9.4</node.version>
61 <npm.version>5.6.0</npm.version>
golabekec4f9542019-01-28 09:34:48 +010062
Ittay Sternd6544de2019-07-01 17:40:20 +030063 <!-- override using -Drelease_version=foo -Dpatch_version=bar -->
Ittay Stern2f1394c2019-07-31 17:10:44 +030064 <release_version>${env.release_version}</release_version>
Ittay Sternd6544de2019-07-01 17:40:20 +030065 <patch_version/>
Einat Vinouzef486e802019-07-11 16:25:44 +030066
67 <reportportal.argline>-javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar -Drp.enable=true -Drp.mode=DEFAULT -Drp.tags="CICD;BE_UNIT;BUILD_${env.BUILD_NUMBER}"</reportportal.argline>
Eylon Malin616f2882019-09-16 14:55:02 +030068 <frontendTestsPhase>generate-resources</frontendTestsPhase>
Einat Vinouzef486e802019-07-11 16:25:44 +030069
biniek6f2b2082018-12-17 11:18:05 +010070 </properties>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020071
Eylon Malin616f2882019-09-16 14:55:02 +030072 <profiles>
73 <profile>
74 <id>no-frontend-tests</id>
75 <properties>
76 <frontendTestsPhase>none</frontendTestsPhase>
77 </properties>
78 </profile>
79 </profiles>
80
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020081
biniek6f2b2082018-12-17 11:18:05 +010082 <!-- this should be commented for local debugging -->
83 <!-- <deployenv>local</deployenv> -->
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020084
biniek6f2b2082018-12-17 11:18:05 +010085 <repositories>
86 <repository>
87 <id>ecomp-releases</id>
88 <name>VID Release Repository</name>
Ittay Sternb93b96b2019-06-19 14:39:39 +030089 <url>${nexusproxy}/${releaseNexusPath}</url>
biniek6f2b2082018-12-17 11:18:05 +010090 </repository>
91 <repository>
92 <id>ecomp-snapshots</id>
93 <name>VID Snapshot Repository</name>
Ittay Sternb93b96b2019-06-19 14:39:39 +030094 <url>${nexusproxy}/${snapshotNexusPath}</url>
biniek6f2b2082018-12-17 11:18:05 +010095 </repository>
96 <repository>
97 <id>ecomp-staging</id>
98 <name>VID Staging Repository</name>
Ittay Sternb93b96b2019-06-19 14:39:39 +030099 <url>${nexusproxy}/${stagingNexusPath}</url>
biniek6f2b2082018-12-17 11:18:05 +0100100 </repository>
101 <repository>
102 <!-- Snapshots repository has ECOMP snapshot artifacts -->
103 <id>oss-snapshots</id>
104 <name>oss Central - Snapshots</name>
105 <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url>
106 </repository>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200107
biniek6f2b2082018-12-17 11:18:05 +0100108 </repositories>
109 <distributionManagement>
110 <repository>
111 <id>ecomp-releases</id>
112 <name>VID Release Repository</name>
113 <url>${nexusproxy}/${releaseNexusPath}</url>
114 </repository>
115 <snapshotRepository>
116 <id>ecomp-snapshots</id>
117 <name>VID Snapshot Repository</name>
118 <url>${nexusproxy}/${snapshotNexusPath}</url>
119 </snapshotRepository>
120 <!-- added for javadoc -->
121 <site>
122 <id>ecomp-site</id>
Ittay Sternb93b96b2019-06-19 14:39:39 +0300123 <url>dav:${nexusproxy}/${sitePath}</url>
biniek6f2b2082018-12-17 11:18:05 +0100124 </site>
125 </distributionManagement>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200126
biniek6f2b2082018-12-17 11:18:05 +0100127 <build>
128 <finalName>vid-common</finalName>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200129
biniek6f2b2082018-12-17 11:18:05 +0100130 <plugins>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200131
132 <plugin>
133 <artifactId>kotlin-maven-plugin</artifactId>
134 <groupId>org.jetbrains.kotlin</groupId>
135 <version>${kotlin.version}</version>
136 <executions>
137 <execution>
138 <id>compile</id>
139 <goals> <goal>compile</goal> </goals>
140 <configuration>
141 <sourceDirs>
142 <sourceDir>${project.basedir}/src/main/java</sourceDir>
143 </sourceDirs>
144 </configuration>
145 </execution>
146 <execution>
147 <id>test-compile</id>
148 <goals> <goal>test-compile</goal> </goals>
149 <configuration>
150 <sourceDirs>
151 <sourceDir>${project.basedir}/src/test/java</sourceDir>
152 </sourceDirs>
153 </configuration>
154 </execution>
155 </executions>
156 </plugin>
biniek6f2b2082018-12-17 11:18:05 +0100157 <plugin>
Ittay Stern6c8df5b2019-08-05 21:21:02 +0300158 <groupId>org.sonarsource.scanner.maven</groupId>
159 <artifactId>sonar-maven-plugin</artifactId>
160 <version>3.6.0.1398</version>
161 </plugin>
162 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100163 <groupId>org.jacoco</groupId>
164 <artifactId>jacoco-maven-plugin</artifactId>
Ittay Stern6c8df5b2019-08-05 21:21:02 +0300165 <version>0.8.4</version>
biniek6f2b2082018-12-17 11:18:05 +0100166 <executions>
167 <execution>
168 <id>default-prepare-agent</id>
169 <goals>
170 <goal>prepare-agent</goal>
171 </goals>
172 </execution>
173 <execution>
174 <id>default-report</id>
175 <goals>
176 <goal>report</goal>
177 </goals>
178 </execution>
179 </executions>
180 </plugin>
181 <plugin>
182 <groupId>org.apache.tomcat.maven</groupId>
183 <artifactId>tomcat6-maven-plugin</artifactId>
184 <version>2.2</version>
185 </plugin>
186 <plugin>
187 <groupId>org.apache.tomcat.maven</groupId>
188 <artifactId>tomcat7-maven-plugin</artifactId>
189 <version>2.2</version>
190 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200191
biniek6f2b2082018-12-17 11:18:05 +0100192 <plugin>
golabekec4f9542019-01-28 09:34:48 +0100193 <groupId>com.github.eirslett</groupId>
194 <artifactId>frontend-maven-plugin</artifactId>
195 <version>${eirslett.version}</version>
196 <executions>
197 <execution>
198 <id>install node and npm</id>
199 <goals>
200 <goal>install-node-and-npm</goal>
201 </goals>
Eylon Malin616f2882019-09-16 14:55:02 +0300202 <phase>${frontendTestsPhase}</phase>
golabekec4f9542019-01-28 09:34:48 +0100203 <configuration>
Ittay Sternf7926712019-07-07 19:23:03 +0300204 <npmVersion>${npm.version}</npmVersion>
golabekec4f9542019-01-28 09:34:48 +0100205 <nodeVersion>${node.version}</nodeVersion>
206 </configuration>
207 </execution>
208 <execution>
Ittay Stern1124e962019-06-18 07:50:50 +0300209 <id>npm config list</id>
210 <configuration>
211 <arguments>config ls -l</arguments>
212 </configuration>
213 <goals>
214 <goal>npm</goal>
215 </goals>
Eylon Malin616f2882019-09-16 14:55:02 +0300216 <phase>${frontendTestsPhase}</phase>
Ittay Stern1124e962019-06-18 07:50:50 +0300217 </execution>
218 <execution>
Ittay Stern779c51d2019-05-16 15:47:08 +0300219 <id>npm install</id>
220 <configuration>
221 <arguments>install</arguments>
222 </configuration>
223 <goals>
224 <goal>npm</goal>
225 </goals>
Eylon Malin616f2882019-09-16 14:55:02 +0300226 <phase>${frontendTestsPhase}</phase>
Ittay Stern779c51d2019-05-16 15:47:08 +0300227 </execution>
228 <execution>
golabekec4f9542019-01-28 09:34:48 +0100229 <id>npm run-script build</id>
230 <configuration>
231 <arguments>run-script build</arguments>
232 </configuration>
233 <goals>
234 <goal>npm</goal>
235 </goals>
Eylon Malin616f2882019-09-16 14:55:02 +0300236 <phase>${frontendTestsPhase}</phase>
golabekec4f9542019-01-28 09:34:48 +0100237 </execution>
238 </executions>
239 </plugin>
240
241 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100242 <groupId>org.apache.maven.plugins</groupId>
243 <artifactId>maven-compiler-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200244 <version>3.5.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100245 <configuration>
246 <source>1.8</source>
247 <target>1.8</target>
248 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200249
250 <executions>
251 <!-- Replacing default-compile as it is treated specially by maven -->
252 <execution>
253 <id>default-compile</id>
254 <phase>none</phase>
255 </execution>
256 <!-- Replacing default-testCompile as it is treated specially by maven -->
257 <execution>
258 <id>default-testCompile</id>
259 <phase>none</phase>
260 </execution>
261 <execution>
262 <id>java-compile</id>
263 <phase>compile</phase>
264 <goals> <goal>compile</goal> </goals>
265 </execution>
266 <execution>
267 <id>java-test-compile</id>
268 <phase>test-compile</phase>
269 <goals> <goal>testCompile</goal> </goals>
270 </execution>
271 </executions>
272
biniek6f2b2082018-12-17 11:18:05 +0100273 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200274
biniek6f2b2082018-12-17 11:18:05 +0100275 <plugin>
Ittay Sternd6544de2019-07-01 17:40:20 +0300276 <groupId>com.google.code.maven-replacer-plugin</groupId>
277 <artifactId>replacer</artifactId>
278 <version>1.5.3</version>
279 <executions>
280 <execution>
281 <phase>prepare-package</phase>
282 <goals>
283 <goal>replace</goal>
284 </goals>
285 </execution>
286 </executions>
287 <configuration>
288 <regex>false</regex>
289 <file>${project.basedir}/src/main/webapp/app/vid/scripts/constants/version.json</file>
290 <replacements>
291 <replacement>
292 <token>BUILD_NUMBER</token>
Ittay Stern2f1394c2019-07-31 17:10:44 +0300293 <value>${release_version}.${patch_version}.${env.BUILD_NUMBER}</value>
Ittay Sternd6544de2019-07-01 17:40:20 +0300294 </replacement>
295 </replacements>
296 </configuration>
297 </plugin>
298
299 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100300 <groupId>org.apache.maven.plugins</groupId>
301 <artifactId>maven-surefire-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200302 <version>${surefire.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100303 <configuration>
biniek6f2b2082018-12-17 11:18:05 +0100304 <includes>
305 <include>**/Test*.java</include>
306 <include>**/*Test.java</include>
307 <include>**/*TestCase.java</include>
308 </includes>
309 <excludes>
310 <exclude>**/selenium/*.java</exclude>
311 <exclude>**/integrationTest/*.java</exclude>
312 </excludes>
313 <additionalClasspathElements>
314 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
315 </additionalClasspathElements>
316 <systemPropertyVariables>
317 <container.classpath>classpath:</container.classpath>
318 </systemPropertyVariables>
319 <useSystemClassLoader>false</useSystemClassLoader>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200320 <properties>
321 <property>
322 <!-- avoid running JUnit tests within surefire-testng provider -->
323 <name>junit</name>
324 <value>false</value>
325 </property>
Einat Vinouzef486e802019-07-11 16:25:44 +0300326 <property>
327 <name>usedefaultlisteners</name>
328 <value>false</value>
329 </property>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200330 </properties>
331 <threadCount>1</threadCount>
biniek6f2b2082018-12-17 11:18:05 +0100332 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200333 <dependencies>
334 <!-- Running TestNG and JUnit Tests -->
335 <!-- https://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html -->
336 <dependency>
337 <groupId>org.apache.maven.surefire</groupId>
338 <artifactId>surefire-junit47</artifactId>
339 <version>${surefire.version}</version>
340 </dependency>
341 <dependency>
342 <groupId>org.apache.maven.surefire</groupId>
343 <artifactId>surefire-testng</artifactId>
344 <version>${surefire.version}</version>
345 </dependency>
346 </dependencies>
biniek6f2b2082018-12-17 11:18:05 +0100347 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200348
biniek6f2b2082018-12-17 11:18:05 +0100349 <plugin>
350 <artifactId>maven-assembly-plugin</artifactId>
351 <configuration>
352 <skipAssembly>${skipassembly}</skipAssembly>
353 <descriptors>
354 <descriptor>${basedir}/distribution.xml</descriptor>
355 </descriptors>
356 </configuration>
357 <executions>
358 <execution>
359 <id>make-assembly</id>
360 <phase>package</phase>
361 <goals>
362 <goal>single</goal>
363 </goals>
364 </execution>
365 </executions>
366 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200367
368
biniek6f2b2082018-12-17 11:18:05 +0100369 <plugin>
370 <groupId>org.apache.maven.plugins</groupId>
371 <artifactId>maven-war-plugin</artifactId>
372 <version>3.0.0</version>
373 <configuration>
374 <!-- Build a jar with all the Java classes -->
375 <attachClasses>true</attachClasses>
376 <!-- Do not put any jars in the war -->
377 <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
378 </configuration>
379 </plugin>
380 <plugin>
381 <groupId>org.apache.maven.plugins</groupId>
382 <artifactId>maven-site-plugin</artifactId>
383 <version>3.6</version>
384 <dependencies>
385 <dependency>
386 <groupId>org.apache.maven.wagon</groupId>
387 <artifactId>wagon-webdav-jackrabbit</artifactId>
388 <version>2.10</version>
389 </dependency>
390 </dependencies>
391 </plugin>
392 <plugin>
393 <groupId>pl.project13.maven</groupId>
394 <artifactId>git-commit-id-plugin</artifactId>
395 <version>2.2.4</version>
396 <executions>
397 <execution>
398 <id>get-the-git-infos</id>
399 <goals>
400 <goal>revision</goal>
401 </goals>
402 </execution>
403 </executions>
404 <configuration>
405 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
406 <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
407 <dateFormatTimeZone>${user.timezone}</dateFormatTimeZone>
408 <generateGitPropertiesFile>true</generateGitPropertiesFile>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200409 <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
biniek6f2b2082018-12-17 11:18:05 +0100410 <includeOnlyProperties>
411 <includeOnlyProperty>^git.commit.id$</includeOnlyProperty>
412 <includeOnlyProperty>^git.commit.message.short$</includeOnlyProperty>
413 <includeOnlyProperty>^git.commit.time$</includeOnlyProperty>
414 </includeOnlyProperties>
415 </configuration>
416 </plugin>
Ittay Sterne0a10282019-02-27 17:32:09 +0200417
418 <plugin>
419 <!--
420 Replace phase "none" with "process-sources" to enable.
421 Set organizationName as desired.
422 Then run `mvn license:check-file-header`, or even `mvn
423 license:update-file-header`.
424 -->
425 <groupId>org.codehaus.mojo</groupId>
426 <artifactId>license-maven-plugin</artifactId>
427 <version>1.17</version>
428
429 <executions>
430 <execution>
431 <id>first</id>
432 <goals>
433 <goal>update-file-header</goal>
434 </goals>
435 <!-- replace phase "none" with "process-sources" to enable -->
436 <phase>none</phase>
437 </execution>
438 </executions>
439
440 <configuration>
441 <canUpdateCopyright>false</canUpdateCopyright>
442 <canUpdateDescription>false</canUpdateDescription>
443 <licenseName>apache_v2</licenseName>
444 <processStartTag>============LICENSE_START=======================================================</processStartTag>
445 <processEndTag>============LICENSE_END=========================================================</processEndTag>
446 <sectionDelimiter>================================================================================</sectionDelimiter>
447 <projectName>VID</projectName>
448 <inceptionYear>2017</inceptionYear>
449 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
450 <canUpdateLicense>true</canUpdateLicense>
451 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
452 <emptyLineAfterHeader>true</emptyLineAfterHeader>
453 <verbose>false</verbose>
454
455 <includes>
456 <include>**/*.java</include>
457 <include>**/*.kt</include>
458 <include>**/*.jsp</include>
459 <include>**/*.xml</include>
460 <include>**/*.js</include>
461 <include>**/*.ts</include>
462 <include>**/*.html</include>
463 <include>**/*.css</include>
464 <include>**/*.sql</include>
465 </includes>
466
467 <extraExtensions>
468 <sql>mysql</sql>
469 </extraExtensions>
470
471 <roots>
472 <root>src/main</root>
473 <root>src/test</root>
474 </roots>
475
476 <excludes>
477 <exclude>**/app/vid/external/**/*</exclude>
478 <exclude>**/main/webapp/WEB-INF/**/*</exclude>
479 <exclude>**/test/resources/WEB-INF/**/*</exclude>
480 <exclude>**/app/vid/scripts/angular-ui-tree.js</exclude>
481 </excludes>
482
483 </configuration>
484 </plugin>
485
biniek6f2b2082018-12-17 11:18:05 +0100486 </plugins>
487 </build>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200488
biniek6f2b2082018-12-17 11:18:05 +0100489 <reporting>
490 <plugins>
491 <plugin>
492 <groupId>org.apache.maven.plugins</groupId>
493 <artifactId>maven-javadoc-plugin</artifactId>
494 <version>2.10.4</version>
495 <configuration>
496 <failOnError>false</failOnError>
497 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
498 <docletArtifact>
499 <groupId>org.umlgraph</groupId>
500 <artifactId>umlgraph</artifactId>
501 <version>5.6</version>
502 </docletArtifact>
503 <additionalparam>-views</additionalparam>
504 <useStandardDocletOptions>true</useStandardDocletOptions>
505 </configuration>
506 </plugin>
507 </plugins>
508 </reporting>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200509
biniek6f2b2082018-12-17 11:18:05 +0100510 <dependencies>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200511
biniek6f2b2082018-12-17 11:18:05 +0100512 <dependency>
513 <groupId>com.opencsv</groupId>
514 <artifactId>opencsv</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300515 <version>4.6</version>
biniek6f2b2082018-12-17 11:18:05 +0100516 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200517
biniek6f2b2082018-12-17 11:18:05 +0100518 <!-- HTTP client -->
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200519
biniek6f2b2082018-12-17 11:18:05 +0100520 <dependency>
521 <groupId>io.joshworks.unirest</groupId>
522 <artifactId>unirest-java</artifactId>
523 <version>0.2.1</version>
524 </dependency>
525 <dependency>
526 <groupId>org.apache.httpcomponents</groupId>
527 <artifactId>httpclient</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300528 <version>4.5.9</version>
biniek6f2b2082018-12-17 11:18:05 +0100529 </dependency>
530 <dependency>
531 <groupId>org.apache.httpcomponents</groupId>
532 <artifactId>httpasyncclient</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300533 <version>4.1.4</version>
biniek6f2b2082018-12-17 11:18:05 +0100534 </dependency>
535 <dependency>
536 <groupId>org.apache.httpcomponents</groupId>
537 <artifactId>httpmime</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300538 <version>4.5.9</version>
biniek6f2b2082018-12-17 11:18:05 +0100539 </dependency>
540 <dependency>
541 <groupId>com.xebialabs.restito</groupId>
542 <artifactId>restito</artifactId>
543 <version>0.9.3</version>
544 <scope>test</scope>
545 </dependency>
kurczewsf477d1d2019-03-20 09:52:12 +0100546 <dependency>
547 <groupId>org.jeasy</groupId>
548 <artifactId>easy-random-core</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300549 <version>4.0.0</version>
kurczewsf477d1d2019-03-20 09:52:12 +0100550 <scope>test</scope>
551 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200552
biniek6f2b2082018-12-17 11:18:05 +0100553 <!-- Helpers -->
554 <dependency>
555 <groupId>io.vavr</groupId>
556 <artifactId>vavr</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300557 <version>0.10.2</version>
biniek6f2b2082018-12-17 11:18:05 +0100558 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200559
biniek6f2b2082018-12-17 11:18:05 +0100560 <!-- SDK overlay war -->
561 <dependency>
562 <groupId>org.onap.portal.sdk</groupId>
563 <artifactId>epsdk-app-overlay</artifactId>
564 <version>${epsdk.version}</version>
565 <type>war</type>
566 </dependency>
567 <dependency>
568 <groupId>org.onap.portal.sdk</groupId>
569 <artifactId>epsdk-app-common</artifactId>
570 <version>${epsdk.version}</version>
571 <type>jar</type>
572 </dependency>
573
574 <dependency>
575 <groupId>org.onap.portal.sdk</groupId>
576 <artifactId>epsdk-core</artifactId>
577 <version>${epsdk.version}</version>
578 </dependency>
579 <dependency>
580 <groupId>org.onap.portal.sdk</groupId>
581 <artifactId>epsdk-analytics</artifactId>
582 <version>${epsdk.version}</version>
583 <exclusions>
584 <exclusion>
585 <groupId>com.lowagie</groupId>
586 <artifactId>itext</artifactId>
587 </exclusion>
588 </exclusions>
589 </dependency>
590 <dependency>
591 <groupId>org.onap.portal.sdk</groupId>
592 <artifactId>epsdk-workflow</artifactId>
593 <version>${epsdk.version}</version>
594 </dependency>
595 <dependency>
596 <groupId>com.att.eelf</groupId>
597 <artifactId>eelf-core</artifactId>
598 <version>1.0.0</version>
599 <exclusions>
600 <exclusion>
601 <artifactId>powermock-api-mockito</artifactId>
602 <groupId>org.powermock</groupId>
603 </exclusion>
604 </exclusions>
605 </dependency>
606 <dependency>
607 <groupId>ch.qos.logback</groupId>
biniek6f2b2082018-12-17 11:18:05 +0100608 <artifactId>logback-classic</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100609 </dependency>
610
Ittay Stern6ad41e32018-12-31 17:21:27 +0200611 <dependency>
612 <groupId>org.jetbrains.kotlin</groupId>
613 <artifactId>kotlin-stdlib-jdk8</artifactId>
614 <version>${kotlin.version}</version>
615 </dependency>
616
biniek6f2b2082018-12-17 11:18:05 +0100617 <!-- Mapper -->
618 <dependency>
619 <groupId>com.fasterxml.jackson.core</groupId>
620 <artifactId>jackson-annotations</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200621 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100622 </dependency>
623 <dependency>
624 <groupId>com.fasterxml.jackson.core</groupId>
625 <artifactId>jackson-core</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200626 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100627 </dependency>
628 <dependency>
629 <groupId>com.fasterxml.jackson.core</groupId>
630 <artifactId>jackson-databind</artifactId>
Amichai Hemli98794612019-09-16 10:53:47 +0300631 <version>${jackson.databind.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100632 </dependency>
633 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200634 <groupId>com.fasterxml.jackson.module</groupId>
635 <artifactId>jackson-module-kotlin</artifactId>
636 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100637 </dependency>
Ittay Stern2687d312019-02-21 17:26:33 +0200638 <!-- c3p0 is to override epsdk-app-common's c3p0 0.9.5.2 vulnerability -->
biniek6f2b2082018-12-17 11:18:05 +0100639 <dependency>
640 <groupId>com.mchange</groupId>
641 <artifactId>c3p0</artifactId>
golabek22b96132019-04-23 11:11:12 +0200642 <version>0.9.5.4</version>
biniek6f2b2082018-12-17 11:18:05 +0100643 </dependency>
644 <dependency>
645 <groupId>io.searchbox</groupId>
646 <artifactId>jest</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300647 <version>6.3.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100648 <exclusions>
649 <exclusion>
650 <groupId>commons-logging</groupId>
651 <artifactId>commons-logging</artifactId>
652 </exclusion>
653 </exclusions>
654 </dependency>
655 <dependency>
656 <groupId>javax.servlet</groupId>
657 <artifactId>javax.servlet-api</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300658 <version>4.0.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100659 <scope>provided</scope>
660 </dependency>
661 <dependency>
662 <groupId>junit</groupId>
663 <artifactId>junit</artifactId>
664 <version>4.12</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200665 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100666 </dependency>
667 <dependency>
668 <groupId>commons-io</groupId>
669 <artifactId>commons-io</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300670 <version>2.6</version>
biniek6f2b2082018-12-17 11:18:05 +0100671 <!--<scope>test</scope>-->
672 </dependency>
673 <dependency>
674 <groupId>com.google.code.bean-matchers</groupId>
675 <artifactId>bean-matchers</artifactId>
676 <version>0.11</version>
677 <scope>test</scope>
678 </dependency>
679 <dependency>
680 <groupId>org.json</groupId>
681 <artifactId>json</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300682 <version>20190722</version>
biniek6f2b2082018-12-17 11:18:05 +0100683 </dependency>
684 <dependency>
685 <groupId>org.quartz-scheduler</groupId>
686 <artifactId>quartz</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300687 <version>2.3.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100688 <exclusions>
689 <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 -->
690 <exclusion>
691 <groupId>c3p0</groupId>
692 <artifactId>c3p0</artifactId>
693 </exclusion>
694 </exclusions>
695 </dependency>
696 <!-- bridge to implement commons-logging using slf4j -->
697 <dependency>
698 <groupId>org.slf4j</groupId>
699 <artifactId>jcl-over-slf4j</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300700 <version>1.7.27</version>
biniek6f2b2082018-12-17 11:18:05 +0100701 </dependency>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200702
703 <!-- springframework to override epsdk-app-common's and epsdk-core's versions -->
biniek6f2b2082018-12-17 11:18:05 +0100704 <dependency>
705 <groupId>org.springframework</groupId>
706 <artifactId>spring-core</artifactId>
707 <version>${springframework.version}</version>
708 <exclusions>
709 <exclusion>
710 <groupId>commons-logging</groupId>
711 <artifactId>commons-logging</artifactId>
712 </exclusion>
713 </exclusions>
714 </dependency>
715 <dependency>
716 <groupId>org.springframework</groupId>
717 <artifactId>spring-test</artifactId>
718 <version>${springframework.version}</version>
719 </dependency>
720 <dependency>
721 <groupId>org.springframework</groupId>
722 <artifactId>spring-tx</artifactId>
723 <version>${springframework.version}</version>
724 </dependency>
725 <dependency>
726 <groupId>org.springframework</groupId>
727 <artifactId>spring-web</artifactId>
728 <version>${springframework.version}</version>
729 </dependency>
730 <dependency>
731 <groupId>org.springframework</groupId>
732 <artifactId>spring-webmvc</artifactId>
733 <version>${springframework.version}</version>
734 </dependency>
735 <dependency>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200736 <groupId>org.springframework</groupId>
737 <artifactId>spring-context-support</artifactId>
738 <version>${springframework.version}</version>
739 </dependency>
740 <dependency>
741 <groupId>org.springframework</groupId>
742 <artifactId>spring-orm</artifactId>
Einat Vinouzed7192592019-07-07 14:15:07 +0300743 <version>${springframework.orm.version}</version>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200744 </dependency>
745 <dependency>
746 <groupId>org.springframework</groupId>
747 <artifactId>spring-aop</artifactId>
748 <version>${springframework.version}</version>
749 </dependency>
750
751 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100752 <groupId>org.glassfish.jersey.core</groupId>
753 <artifactId>jersey-client</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200754 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100755 </dependency>
756 <dependency>
757 <groupId>org.glassfish.jersey.connectors</groupId>
758 <artifactId>jersey-jetty-connector</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200759 <version>${jersey.version}</version>
760 </dependency>
761 <!--https://stackoverflow.com/questions/44088493/jersey-stopped-working-with-injectionmanagerfactory-not-found-->
762 <dependency>
763 <groupId>org.glassfish.jersey.inject</groupId>
764 <artifactId>jersey-hk2</artifactId>
765 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100766 </dependency>
767 <dependency>
768 <groupId>com.fasterxml.jackson.jaxrs</groupId>
769 <artifactId>jackson-jaxrs-json-provider</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200770 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100771 </dependency>
772 <dependency>
773 <groupId>commons-beanutils</groupId>
774 <artifactId>commons-beanutils</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100775 </dependency>
776 <dependency>
777 <groupId>com.googlecode.json-simple</groupId>
778 <artifactId>json-simple</artifactId>
779 <version>1.1.1</version>
780 </dependency>
781 <dependency>
782 <groupId>org.seleniumhq.selenium</groupId>
783 <artifactId>selenium-java</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300784 <version>${selenium.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100785 <scope>test</scope>
786 </dependency>
787 <dependency>
788 <groupId>org.seleniumhq.selenium</groupId>
789 <artifactId>selenium-api</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300790 <version>${selenium.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100791 <scope>test</scope>
792 </dependency>
793 <dependency>
794 <groupId>org.testng</groupId>
795 <artifactId>testng</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200796 <version>6.14.3</version>
biniek6f2b2082018-12-17 11:18:05 +0100797 <scope>test</scope>
798 </dependency>
799 <dependency>
800 <groupId>org.mockito</groupId>
801 <artifactId>mockito-core</artifactId>
802 <version>2.23.0</version>
803 <scope>test</scope>
804 </dependency>
805 <dependency>
806 <groupId>org.seleniumhq.selenium</groupId>
807 <artifactId>selenium-firefox-driver</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300808 <version>${selenium.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100809 </dependency>
810 <dependency>
811 <groupId>xml-apis</groupId>
812 <artifactId>xml-apis</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300813 <version>2.0.2</version>
biniek6f2b2082018-12-17 11:18:05 +0100814 </dependency>
815 <dependency>
816 <groupId>org.yaml</groupId>
817 <artifactId>snakeyaml</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300818 <version>1.24</version>
biniek6f2b2082018-12-17 11:18:05 +0100819 </dependency>
820 <dependency>
821 <groupId>org.skyscreamer</groupId>
822 <artifactId>jsonassert</artifactId>
823 <version>1.5.0</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200824 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100825 </dependency>
826 <dependency>
827 <groupId>org.onap.sdc.sdc-tosca</groupId>
828 <artifactId>sdc-tosca</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300829 <version>1.6.0</version>
biniek6f2b2082018-12-17 11:18:05 +0100830 <scope>compile</scope>
831 </dependency>
832 <dependency>
833 <groupId>net.javacrumbs.json-unit</groupId>
834 <artifactId>json-unit</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300835 <version>2.8.0</version>
biniek6f2b2082018-12-17 11:18:05 +0100836 <scope>test</scope>
837 </dependency>
838 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200839 <groupId>org.glassfish.jersey.media</groupId>
840 <artifactId>jersey-media-json-jackson</artifactId>
841 <version>${jersey.version}</version>
842 <scope>test</scope>
843 </dependency>
844 <dependency>
845 <groupId>org.apache.commons</groupId>
846 <artifactId>commons-lang3</artifactId>
Einat Vinouzee601bbd2019-07-16 17:17:36 +0300847 <version>3.9</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200848 </dependency>
849 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100850 <groupId>org.apache.commons</groupId>
851 <artifactId>commons-text</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300852 <version>1.7</version>
biniek6f2b2082018-12-17 11:18:05 +0100853 </dependency>
854 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200855 <groupId>org.apache.commons</groupId>
856 <artifactId>commons-proxy</artifactId>
857 <version>1.0</version>
858 </dependency>
859 <dependency>
Eylon Malind36ae5e2019-08-07 18:36:49 +0300860 <groupId>org.apache.commons</groupId>
861 <artifactId>commons-collections4</artifactId>
862 <version>4.4</version>
863 </dependency>
864 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100865 <groupId>org.hamcrest</groupId>
866 <artifactId>java-hamcrest</artifactId>
867 <version>2.0.0.0</version>
868 <scope>test</scope>
869 </dependency>
870 <dependency>
871 <groupId>org.togglz</groupId>
872 <artifactId>togglz-spring-core</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300873 <version>2.6.1.Final</version>
biniek6f2b2082018-12-17 11:18:05 +0100874 </dependency>
875 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200876 <groupId>com.h2database</groupId>
877 <artifactId>h2</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300878 <version>1.4.199</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200879 <scope>test</scope>
880 </dependency>
881 <dependency>
882 <groupId>javax.xml.bind</groupId>
883 <artifactId>jaxb-api</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300884 <version>2.3.1</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200885 </dependency>
886
887 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100888 <groupId>org.assertj</groupId>
889 <artifactId>assertj-core</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300890 <version>3.13.2</version>
kurczewsb1d73932019-05-17 09:10:27 +0200891 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100892 </dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200893 <dependency>
894 <groupId>com.google.guava</groupId>
895 <artifactId>guava</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300896 <version>28.0-jre</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200897 </dependency>
Wojciech Sliwka86683c52019-04-09 14:57:02 +0200898 <dependency>
899 <groupId>io.springfox</groupId>
900 <artifactId>springfox-swagger2</artifactId>
901 <version>2.9.2</version>
902 </dependency>
Einat Vinouzee601bbd2019-07-16 17:17:36 +0300903 <dependency>
904 <groupId>org.apache.maven</groupId>
905 <artifactId>maven-artifact</artifactId>
906 <version>3.6.1</version>
907 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200908 </dependencies>
909</project>