blob: 1b786c2c08102573cdc10120d34c345e13d1a0f3 [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 Stern2e0d6b12020-01-08 17:35:45 +020012 <version>6.0.2-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>
Ittay Stern6c2d0932019-12-15 18:33:18 +020020 <version>2.1.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>
Ittay Stern9c131c12020-01-09 17:54:41 +020028 <epsdk.version>2.6.0</epsdk.version>
29 <epsdk.overlay.version>2.5.0</epsdk.overlay.version>
Amichai Hemli2ca9ef32020-02-02 15:46:13 +020030 <springframework.version>5.2.3.RELEASE</springframework.version>
Einat Vinouzed7192592019-07-07 14:15:07 +030031 <springframework.orm.version>4.3.22.RELEASE</springframework.orm.version>
32 <!-- epsdk-core is importing this class, which is only on spring-orm 4 but not in orm 5:
33 org.springframework.orm.hibernate4.HibernateTransactionManager
34 so following orm.version lets epsdk-core find it -->
biniek6f2b2082018-12-17 11:18:05 +010035 <hibernate.version>4.3.11.Final</hibernate.version>
Eylon Malin434c95a2019-11-28 15:35:16 +020036 <jackson.version>2.10.1</jackson.version>
37 <jackson.databind.version>2.10.1</jackson.databind.version>
Eylon Malinc6383912019-10-29 15:01:17 +020038 <onap.logging.version>1.6.1</onap.logging.version>
Eylon Malin434c95a2019-11-28 15:35:16 +020039 <jersey.version>2.29.1</jersey.version>
Ittay Stern6ad41e32018-12-31 17:21:27 +020040 <surefire.version>2.22.1</surefire.version>
Einat Vinouze83157b32019-07-11 16:25:44 +030041 <selenium.version>3.141.59</selenium.version>
Ittay Sterneda81402019-02-26 06:32:43 +020042 <sonar.coverage.exclusions>**/webapp/**/*,**/*.js</sonar.coverage.exclusions>
Ittay Stern6ad41e32018-12-31 17:21:27 +020043
Ittay Stern9e506792019-08-27 12:22:05 +030044 <!--Specify path to load jacoco xml report, as Sonar can't load Kotlin coverage from binary report. -->
45 <sonar.coverage.jacoco.xmlReportPaths>
46 ${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml
47 </sonar.coverage.jacoco.xmlReportPaths>
48
biniek6f2b2082018-12-17 11:18:05 +010049 <!-- Skip assembling the zip by default -->
50 <skipassembly>true</skipassembly>
biniek6f2b2082018-12-17 11:18:05 +010051 <nexusproxy>https://nexus.onap.org</nexusproxy>
Ittay Sternb93b96b2019-06-19 14:39:39 +030052 <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath>
53 <releaseNexusPath>content/repositories/releases/</releaseNexusPath>
54 <stagingNexusPath>content/repositories/staging/</stagingNexusPath>
55 <sitePath>content/sites/site/org/onap/vid/${project.version}</sitePath>
Ittay Stern6ad41e32018-12-31 17:21:27 +020056
57 <aspectj.version>1.8.9</aspectj.version>
Eylon Malin434c95a2019-11-28 15:35:16 +020058 <kotlin.version>1.3.60</kotlin.version>
Ittay Stern6ad41e32018-12-31 17:21:27 +020059 <kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
60
golabekec4f9542019-01-28 09:34:48 +010061 <eirslett.version>1.6</eirslett.version>
Ittay Sternf7926712019-07-07 19:23:03 +030062 <node.version>v8.9.4</node.version>
63 <npm.version>5.6.0</npm.version>
golabekec4f9542019-01-28 09:34:48 +010064
Ittay Sternd6544de2019-07-01 17:40:20 +030065 <!-- override using -Drelease_version=foo -Dpatch_version=bar -->
Ittay Stern2f1394c2019-07-31 17:10:44 +030066 <release_version>${env.release_version}</release_version>
Ittay Sternd6544de2019-07-01 17:40:20 +030067 <patch_version/>
Einat Vinouzef486e802019-07-11 16:25:44 +030068
69 <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 +030070 <frontendTestsPhase>generate-resources</frontendTestsPhase>
Einat Vinouzef486e802019-07-11 16:25:44 +030071
biniek6f2b2082018-12-17 11:18:05 +010072 </properties>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020073
Eylon Malin616f2882019-09-16 14:55:02 +030074 <profiles>
75 <profile>
76 <id>no-frontend-tests</id>
77 <properties>
78 <frontendTestsPhase>none</frontendTestsPhase>
79 </properties>
80 </profile>
81 </profiles>
82
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020083
biniek6f2b2082018-12-17 11:18:05 +010084 <!-- this should be commented for local debugging -->
85 <!-- <deployenv>local</deployenv> -->
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020086
biniek6f2b2082018-12-17 11:18:05 +010087 <repositories>
88 <repository>
89 <id>ecomp-releases</id>
90 <name>VID Release Repository</name>
Ittay Sternb93b96b2019-06-19 14:39:39 +030091 <url>${nexusproxy}/${releaseNexusPath}</url>
biniek6f2b2082018-12-17 11:18:05 +010092 </repository>
93 <repository>
94 <id>ecomp-snapshots</id>
95 <name>VID Snapshot Repository</name>
Ittay Sternb93b96b2019-06-19 14:39:39 +030096 <url>${nexusproxy}/${snapshotNexusPath}</url>
biniek6f2b2082018-12-17 11:18:05 +010097 </repository>
98 <repository>
99 <id>ecomp-staging</id>
100 <name>VID Staging Repository</name>
Ittay Sternb93b96b2019-06-19 14:39:39 +0300101 <url>${nexusproxy}/${stagingNexusPath}</url>
biniek6f2b2082018-12-17 11:18:05 +0100102 </repository>
103 <repository>
104 <!-- Snapshots repository has ECOMP snapshot artifacts -->
105 <id>oss-snapshots</id>
106 <name>oss Central - Snapshots</name>
107 <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url>
108 </repository>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200109
biniek6f2b2082018-12-17 11:18:05 +0100110 </repositories>
111 <distributionManagement>
112 <repository>
113 <id>ecomp-releases</id>
114 <name>VID Release Repository</name>
115 <url>${nexusproxy}/${releaseNexusPath}</url>
116 </repository>
117 <snapshotRepository>
118 <id>ecomp-snapshots</id>
119 <name>VID Snapshot Repository</name>
120 <url>${nexusproxy}/${snapshotNexusPath}</url>
121 </snapshotRepository>
122 <!-- added for javadoc -->
123 <site>
124 <id>ecomp-site</id>
Ittay Sternb93b96b2019-06-19 14:39:39 +0300125 <url>dav:${nexusproxy}/${sitePath}</url>
biniek6f2b2082018-12-17 11:18:05 +0100126 </site>
127 </distributionManagement>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200128
biniek6f2b2082018-12-17 11:18:05 +0100129 <build>
130 <finalName>vid-common</finalName>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200131
biniek6f2b2082018-12-17 11:18:05 +0100132 <plugins>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200133
134 <plugin>
135 <artifactId>kotlin-maven-plugin</artifactId>
136 <groupId>org.jetbrains.kotlin</groupId>
137 <version>${kotlin.version}</version>
138 <executions>
139 <execution>
140 <id>compile</id>
141 <goals> <goal>compile</goal> </goals>
142 <configuration>
143 <sourceDirs>
144 <sourceDir>${project.basedir}/src/main/java</sourceDir>
145 </sourceDirs>
146 </configuration>
147 </execution>
148 <execution>
149 <id>test-compile</id>
150 <goals> <goal>test-compile</goal> </goals>
151 <configuration>
152 <sourceDirs>
153 <sourceDir>${project.basedir}/src/test/java</sourceDir>
154 </sourceDirs>
155 </configuration>
156 </execution>
157 </executions>
158 </plugin>
biniek6f2b2082018-12-17 11:18:05 +0100159 <plugin>
Ittay Stern6c8df5b2019-08-05 21:21:02 +0300160 <groupId>org.sonarsource.scanner.maven</groupId>
161 <artifactId>sonar-maven-plugin</artifactId>
162 <version>3.6.0.1398</version>
163 </plugin>
164 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100165 <groupId>org.jacoco</groupId>
166 <artifactId>jacoco-maven-plugin</artifactId>
Ittay Stern6c8df5b2019-08-05 21:21:02 +0300167 <version>0.8.4</version>
biniek6f2b2082018-12-17 11:18:05 +0100168 <executions>
169 <execution>
170 <id>default-prepare-agent</id>
171 <goals>
172 <goal>prepare-agent</goal>
173 </goals>
174 </execution>
175 <execution>
176 <id>default-report</id>
177 <goals>
178 <goal>report</goal>
179 </goals>
180 </execution>
181 </executions>
182 </plugin>
183 <plugin>
184 <groupId>org.apache.tomcat.maven</groupId>
185 <artifactId>tomcat6-maven-plugin</artifactId>
186 <version>2.2</version>
187 </plugin>
188 <plugin>
189 <groupId>org.apache.tomcat.maven</groupId>
190 <artifactId>tomcat7-maven-plugin</artifactId>
191 <version>2.2</version>
192 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200193
biniek6f2b2082018-12-17 11:18:05 +0100194 <plugin>
golabekec4f9542019-01-28 09:34:48 +0100195 <groupId>com.github.eirslett</groupId>
196 <artifactId>frontend-maven-plugin</artifactId>
197 <version>${eirslett.version}</version>
198 <executions>
199 <execution>
200 <id>install node and npm</id>
201 <goals>
202 <goal>install-node-and-npm</goal>
203 </goals>
Eylon Malin616f2882019-09-16 14:55:02 +0300204 <phase>${frontendTestsPhase}</phase>
golabekec4f9542019-01-28 09:34:48 +0100205 <configuration>
Ittay Sternf7926712019-07-07 19:23:03 +0300206 <npmVersion>${npm.version}</npmVersion>
golabekec4f9542019-01-28 09:34:48 +0100207 <nodeVersion>${node.version}</nodeVersion>
208 </configuration>
209 </execution>
210 <execution>
Ittay Stern1124e962019-06-18 07:50:50 +0300211 <id>npm config list</id>
212 <configuration>
213 <arguments>config ls -l</arguments>
214 </configuration>
215 <goals>
216 <goal>npm</goal>
217 </goals>
Eylon Malin616f2882019-09-16 14:55:02 +0300218 <phase>${frontendTestsPhase}</phase>
Ittay Stern1124e962019-06-18 07:50:50 +0300219 </execution>
220 <execution>
Ittay Stern779c51d2019-05-16 15:47:08 +0300221 <id>npm install</id>
222 <configuration>
223 <arguments>install</arguments>
224 </configuration>
225 <goals>
226 <goal>npm</goal>
227 </goals>
Eylon Malin616f2882019-09-16 14:55:02 +0300228 <phase>${frontendTestsPhase}</phase>
Ittay Stern779c51d2019-05-16 15:47:08 +0300229 </execution>
230 <execution>
golabekec4f9542019-01-28 09:34:48 +0100231 <id>npm run-script build</id>
232 <configuration>
233 <arguments>run-script build</arguments>
234 </configuration>
235 <goals>
236 <goal>npm</goal>
237 </goals>
Eylon Malin616f2882019-09-16 14:55:02 +0300238 <phase>${frontendTestsPhase}</phase>
golabekec4f9542019-01-28 09:34:48 +0100239 </execution>
240 </executions>
241 </plugin>
242
243 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100244 <groupId>org.apache.maven.plugins</groupId>
245 <artifactId>maven-compiler-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200246 <version>3.5.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100247 <configuration>
248 <source>1.8</source>
249 <target>1.8</target>
250 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200251
252 <executions>
253 <!-- Replacing default-compile as it is treated specially by maven -->
254 <execution>
255 <id>default-compile</id>
256 <phase>none</phase>
257 </execution>
258 <!-- Replacing default-testCompile as it is treated specially by maven -->
259 <execution>
260 <id>default-testCompile</id>
261 <phase>none</phase>
262 </execution>
263 <execution>
264 <id>java-compile</id>
265 <phase>compile</phase>
266 <goals> <goal>compile</goal> </goals>
267 </execution>
268 <execution>
269 <id>java-test-compile</id>
270 <phase>test-compile</phase>
271 <goals> <goal>testCompile</goal> </goals>
272 </execution>
273 </executions>
274
biniek6f2b2082018-12-17 11:18:05 +0100275 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200276
biniek6f2b2082018-12-17 11:18:05 +0100277 <plugin>
Ittay Sternd6544de2019-07-01 17:40:20 +0300278 <groupId>com.google.code.maven-replacer-plugin</groupId>
279 <artifactId>replacer</artifactId>
280 <version>1.5.3</version>
281 <executions>
282 <execution>
283 <phase>prepare-package</phase>
284 <goals>
285 <goal>replace</goal>
286 </goals>
287 </execution>
288 </executions>
289 <configuration>
290 <regex>false</regex>
291 <file>${project.basedir}/src/main/webapp/app/vid/scripts/constants/version.json</file>
292 <replacements>
293 <replacement>
294 <token>BUILD_NUMBER</token>
Ittay Stern2f1394c2019-07-31 17:10:44 +0300295 <value>${release_version}.${patch_version}.${env.BUILD_NUMBER}</value>
Ittay Sternd6544de2019-07-01 17:40:20 +0300296 </replacement>
297 </replacements>
298 </configuration>
299 </plugin>
300
301 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100302 <groupId>org.apache.maven.plugins</groupId>
303 <artifactId>maven-surefire-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200304 <version>${surefire.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100305 <configuration>
biniek6f2b2082018-12-17 11:18:05 +0100306 <includes>
307 <include>**/Test*.java</include>
308 <include>**/*Test.java</include>
309 <include>**/*TestCase.java</include>
310 </includes>
311 <excludes>
312 <exclude>**/selenium/*.java</exclude>
313 <exclude>**/integrationTest/*.java</exclude>
314 </excludes>
315 <additionalClasspathElements>
316 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
317 </additionalClasspathElements>
318 <systemPropertyVariables>
319 <container.classpath>classpath:</container.classpath>
320 </systemPropertyVariables>
321 <useSystemClassLoader>false</useSystemClassLoader>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200322 <properties>
323 <property>
324 <!-- avoid running JUnit tests within surefire-testng provider -->
325 <name>junit</name>
326 <value>false</value>
327 </property>
Einat Vinouzef486e802019-07-11 16:25:44 +0300328 <property>
329 <name>usedefaultlisteners</name>
330 <value>false</value>
331 </property>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200332 </properties>
333 <threadCount>1</threadCount>
biniek6f2b2082018-12-17 11:18:05 +0100334 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200335 <dependencies>
336 <!-- Running TestNG and JUnit Tests -->
337 <!-- https://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html -->
338 <dependency>
339 <groupId>org.apache.maven.surefire</groupId>
340 <artifactId>surefire-junit47</artifactId>
341 <version>${surefire.version}</version>
342 </dependency>
343 <dependency>
344 <groupId>org.apache.maven.surefire</groupId>
345 <artifactId>surefire-testng</artifactId>
346 <version>${surefire.version}</version>
347 </dependency>
348 </dependencies>
biniek6f2b2082018-12-17 11:18:05 +0100349 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200350
biniek6f2b2082018-12-17 11:18:05 +0100351 <plugin>
352 <artifactId>maven-assembly-plugin</artifactId>
353 <configuration>
354 <skipAssembly>${skipassembly}</skipAssembly>
355 <descriptors>
356 <descriptor>${basedir}/distribution.xml</descriptor>
357 </descriptors>
358 </configuration>
359 <executions>
360 <execution>
361 <id>make-assembly</id>
362 <phase>package</phase>
363 <goals>
364 <goal>single</goal>
365 </goals>
366 </execution>
367 </executions>
368 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200369
370
biniek6f2b2082018-12-17 11:18:05 +0100371 <plugin>
372 <groupId>org.apache.maven.plugins</groupId>
373 <artifactId>maven-war-plugin</artifactId>
374 <version>3.0.0</version>
375 <configuration>
376 <!-- Build a jar with all the Java classes -->
377 <attachClasses>true</attachClasses>
378 <!-- Do not put any jars in the war -->
379 <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
380 </configuration>
381 </plugin>
382 <plugin>
383 <groupId>org.apache.maven.plugins</groupId>
384 <artifactId>maven-site-plugin</artifactId>
385 <version>3.6</version>
386 <dependencies>
387 <dependency>
388 <groupId>org.apache.maven.wagon</groupId>
389 <artifactId>wagon-webdav-jackrabbit</artifactId>
390 <version>2.10</version>
391 </dependency>
392 </dependencies>
393 </plugin>
394 <plugin>
395 <groupId>pl.project13.maven</groupId>
396 <artifactId>git-commit-id-plugin</artifactId>
397 <version>2.2.4</version>
398 <executions>
399 <execution>
400 <id>get-the-git-infos</id>
401 <goals>
402 <goal>revision</goal>
403 </goals>
404 </execution>
405 </executions>
406 <configuration>
407 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
408 <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
409 <dateFormatTimeZone>${user.timezone}</dateFormatTimeZone>
410 <generateGitPropertiesFile>true</generateGitPropertiesFile>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200411 <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
biniek6f2b2082018-12-17 11:18:05 +0100412 <includeOnlyProperties>
413 <includeOnlyProperty>^git.commit.id$</includeOnlyProperty>
414 <includeOnlyProperty>^git.commit.message.short$</includeOnlyProperty>
415 <includeOnlyProperty>^git.commit.time$</includeOnlyProperty>
416 </includeOnlyProperties>
417 </configuration>
418 </plugin>
Ittay Sterne0a10282019-02-27 17:32:09 +0200419
420 <plugin>
421 <!--
422 Replace phase "none" with "process-sources" to enable.
423 Set organizationName as desired.
424 Then run `mvn license:check-file-header`, or even `mvn
425 license:update-file-header`.
426 -->
427 <groupId>org.codehaus.mojo</groupId>
428 <artifactId>license-maven-plugin</artifactId>
429 <version>1.17</version>
430
431 <executions>
432 <execution>
433 <id>first</id>
434 <goals>
435 <goal>update-file-header</goal>
436 </goals>
437 <!-- replace phase "none" with "process-sources" to enable -->
438 <phase>none</phase>
439 </execution>
440 </executions>
441
442 <configuration>
443 <canUpdateCopyright>false</canUpdateCopyright>
444 <canUpdateDescription>false</canUpdateDescription>
445 <licenseName>apache_v2</licenseName>
446 <processStartTag>============LICENSE_START=======================================================</processStartTag>
447 <processEndTag>============LICENSE_END=========================================================</processEndTag>
448 <sectionDelimiter>================================================================================</sectionDelimiter>
449 <projectName>VID</projectName>
450 <inceptionYear>2017</inceptionYear>
451 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
452 <canUpdateLicense>true</canUpdateLicense>
453 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
454 <emptyLineAfterHeader>true</emptyLineAfterHeader>
455 <verbose>false</verbose>
456
457 <includes>
458 <include>**/*.java</include>
459 <include>**/*.kt</include>
460 <include>**/*.jsp</include>
461 <include>**/*.xml</include>
462 <include>**/*.js</include>
463 <include>**/*.ts</include>
464 <include>**/*.html</include>
465 <include>**/*.css</include>
466 <include>**/*.sql</include>
467 </includes>
468
469 <extraExtensions>
470 <sql>mysql</sql>
471 </extraExtensions>
472
473 <roots>
474 <root>src/main</root>
475 <root>src/test</root>
476 </roots>
477
478 <excludes>
479 <exclude>**/app/vid/external/**/*</exclude>
480 <exclude>**/main/webapp/WEB-INF/**/*</exclude>
481 <exclude>**/test/resources/WEB-INF/**/*</exclude>
482 <exclude>**/app/vid/scripts/angular-ui-tree.js</exclude>
483 </excludes>
484
485 </configuration>
486 </plugin>
487
biniek6f2b2082018-12-17 11:18:05 +0100488 </plugins>
489 </build>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200490
biniek6f2b2082018-12-17 11:18:05 +0100491 <reporting>
492 <plugins>
493 <plugin>
494 <groupId>org.apache.maven.plugins</groupId>
495 <artifactId>maven-javadoc-plugin</artifactId>
496 <version>2.10.4</version>
497 <configuration>
498 <failOnError>false</failOnError>
499 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
500 <docletArtifact>
501 <groupId>org.umlgraph</groupId>
502 <artifactId>umlgraph</artifactId>
503 <version>5.6</version>
504 </docletArtifact>
505 <additionalparam>-views</additionalparam>
506 <useStandardDocletOptions>true</useStandardDocletOptions>
507 </configuration>
508 </plugin>
509 </plugins>
510 </reporting>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200511
biniek6f2b2082018-12-17 11:18:05 +0100512 <dependencies>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200513
biniek6f2b2082018-12-17 11:18:05 +0100514 <dependency>
515 <groupId>com.opencsv</groupId>
516 <artifactId>opencsv</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300517 <version>4.6</version>
biniek6f2b2082018-12-17 11:18:05 +0100518 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200519
biniek6f2b2082018-12-17 11:18:05 +0100520 <!-- HTTP client -->
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200521
biniek6f2b2082018-12-17 11:18:05 +0100522 <dependency>
523 <groupId>io.joshworks.unirest</groupId>
524 <artifactId>unirest-java</artifactId>
525 <version>0.2.1</version>
526 </dependency>
527 <dependency>
528 <groupId>org.apache.httpcomponents</groupId>
529 <artifactId>httpclient</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300530 <version>4.5.9</version>
biniek6f2b2082018-12-17 11:18:05 +0100531 </dependency>
532 <dependency>
533 <groupId>org.apache.httpcomponents</groupId>
534 <artifactId>httpasyncclient</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300535 <version>4.1.4</version>
biniek6f2b2082018-12-17 11:18:05 +0100536 </dependency>
537 <dependency>
538 <groupId>org.apache.httpcomponents</groupId>
539 <artifactId>httpmime</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300540 <version>4.5.9</version>
biniek6f2b2082018-12-17 11:18:05 +0100541 </dependency>
542 <dependency>
543 <groupId>com.xebialabs.restito</groupId>
544 <artifactId>restito</artifactId>
545 <version>0.9.3</version>
546 <scope>test</scope>
547 </dependency>
kurczewsf477d1d2019-03-20 09:52:12 +0100548 <dependency>
549 <groupId>org.jeasy</groupId>
550 <artifactId>easy-random-core</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300551 <version>4.0.0</version>
kurczewsf477d1d2019-03-20 09:52:12 +0100552 <scope>test</scope>
553 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200554
biniek6f2b2082018-12-17 11:18:05 +0100555 <!-- Helpers -->
556 <dependency>
557 <groupId>io.vavr</groupId>
558 <artifactId>vavr</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300559 <version>0.10.2</version>
biniek6f2b2082018-12-17 11:18:05 +0100560 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200561
biniek6f2b2082018-12-17 11:18:05 +0100562 <!-- SDK overlay war -->
563 <dependency>
564 <groupId>org.onap.portal.sdk</groupId>
565 <artifactId>epsdk-app-overlay</artifactId>
Ittay Stern9c131c12020-01-09 17:54:41 +0200566 <version>${epsdk.overlay.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100567 <type>war</type>
568 </dependency>
569 <dependency>
570 <groupId>org.onap.portal.sdk</groupId>
571 <artifactId>epsdk-app-common</artifactId>
572 <version>${epsdk.version}</version>
573 <type>jar</type>
574 </dependency>
575
576 <dependency>
577 <groupId>org.onap.portal.sdk</groupId>
578 <artifactId>epsdk-core</artifactId>
579 <version>${epsdk.version}</version>
580 </dependency>
581 <dependency>
582 <groupId>org.onap.portal.sdk</groupId>
583 <artifactId>epsdk-analytics</artifactId>
584 <version>${epsdk.version}</version>
585 <exclusions>
586 <exclusion>
587 <groupId>com.lowagie</groupId>
588 <artifactId>itext</artifactId>
589 </exclusion>
590 </exclusions>
591 </dependency>
592 <dependency>
593 <groupId>org.onap.portal.sdk</groupId>
594 <artifactId>epsdk-workflow</artifactId>
595 <version>${epsdk.version}</version>
596 </dependency>
597 <dependency>
598 <groupId>com.att.eelf</groupId>
599 <artifactId>eelf-core</artifactId>
600 <version>1.0.0</version>
601 <exclusions>
602 <exclusion>
603 <artifactId>powermock-api-mockito</artifactId>
604 <groupId>org.powermock</groupId>
605 </exclusion>
606 </exclusions>
607 </dependency>
608 <dependency>
609 <groupId>ch.qos.logback</groupId>
biniek6f2b2082018-12-17 11:18:05 +0100610 <artifactId>logback-classic</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100611 </dependency>
Eylon Malin43531f02019-10-07 15:20:40 +0300612 <dependency>
613 <groupId>org.onap.logging-analytics</groupId>
614 <artifactId>logging-filter-base</artifactId>
Eylon Malinc60f2ea2019-10-28 08:22:39 +0200615 <version>${onap.logging.version}</version>
Eylon Malin43531f02019-10-07 15:20:40 +0300616 </dependency>
617 <dependency>
618 <groupId>org.onap.logging-analytics</groupId>
619 <artifactId>logging-filter-spring</artifactId>
Eylon Malinc60f2ea2019-10-28 08:22:39 +0200620 <version>${onap.logging.version}</version>
Eylon Malin43531f02019-10-07 15:20:40 +0300621 </dependency>
biniek6f2b2082018-12-17 11:18:05 +0100622
Ittay Stern6ad41e32018-12-31 17:21:27 +0200623 <dependency>
624 <groupId>org.jetbrains.kotlin</groupId>
625 <artifactId>kotlin-stdlib-jdk8</artifactId>
626 <version>${kotlin.version}</version>
627 </dependency>
628
biniek6f2b2082018-12-17 11:18:05 +0100629 <!-- Mapper -->
630 <dependency>
631 <groupId>com.fasterxml.jackson.core</groupId>
632 <artifactId>jackson-annotations</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200633 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100634 </dependency>
635 <dependency>
636 <groupId>com.fasterxml.jackson.core</groupId>
637 <artifactId>jackson-core</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200638 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100639 </dependency>
640 <dependency>
641 <groupId>com.fasterxml.jackson.core</groupId>
642 <artifactId>jackson-databind</artifactId>
Amichai Hemli98794612019-09-16 10:53:47 +0300643 <version>${jackson.databind.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100644 </dependency>
645 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200646 <groupId>com.fasterxml.jackson.module</groupId>
647 <artifactId>jackson-module-kotlin</artifactId>
648 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100649 </dependency>
Ittay Stern2687d312019-02-21 17:26:33 +0200650 <!-- c3p0 is to override epsdk-app-common's c3p0 0.9.5.2 vulnerability -->
biniek6f2b2082018-12-17 11:18:05 +0100651 <dependency>
652 <groupId>com.mchange</groupId>
653 <artifactId>c3p0</artifactId>
golabek22b96132019-04-23 11:11:12 +0200654 <version>0.9.5.4</version>
biniek6f2b2082018-12-17 11:18:05 +0100655 </dependency>
656 <dependency>
657 <groupId>io.searchbox</groupId>
658 <artifactId>jest</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300659 <version>6.3.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100660 <exclusions>
661 <exclusion>
662 <groupId>commons-logging</groupId>
663 <artifactId>commons-logging</artifactId>
664 </exclusion>
665 </exclusions>
666 </dependency>
667 <dependency>
668 <groupId>javax.servlet</groupId>
669 <artifactId>javax.servlet-api</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300670 <version>4.0.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100671 <scope>provided</scope>
672 </dependency>
673 <dependency>
674 <groupId>junit</groupId>
675 <artifactId>junit</artifactId>
676 <version>4.12</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200677 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100678 </dependency>
679 <dependency>
680 <groupId>commons-io</groupId>
681 <artifactId>commons-io</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300682 <version>2.6</version>
biniek6f2b2082018-12-17 11:18:05 +0100683 <!--<scope>test</scope>-->
684 </dependency>
685 <dependency>
686 <groupId>com.google.code.bean-matchers</groupId>
687 <artifactId>bean-matchers</artifactId>
688 <version>0.11</version>
689 <scope>test</scope>
690 </dependency>
691 <dependency>
692 <groupId>org.json</groupId>
693 <artifactId>json</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300694 <version>20190722</version>
biniek6f2b2082018-12-17 11:18:05 +0100695 </dependency>
696 <dependency>
697 <groupId>org.quartz-scheduler</groupId>
698 <artifactId>quartz</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300699 <version>2.3.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100700 <exclusions>
701 <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 -->
702 <exclusion>
703 <groupId>c3p0</groupId>
704 <artifactId>c3p0</artifactId>
705 </exclusion>
706 </exclusions>
707 </dependency>
708 <!-- bridge to implement commons-logging using slf4j -->
709 <dependency>
710 <groupId>org.slf4j</groupId>
711 <artifactId>jcl-over-slf4j</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300712 <version>1.7.27</version>
biniek6f2b2082018-12-17 11:18:05 +0100713 </dependency>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200714
715 <!-- springframework to override epsdk-app-common's and epsdk-core's versions -->
biniek6f2b2082018-12-17 11:18:05 +0100716 <dependency>
717 <groupId>org.springframework</groupId>
718 <artifactId>spring-core</artifactId>
719 <version>${springframework.version}</version>
720 <exclusions>
721 <exclusion>
722 <groupId>commons-logging</groupId>
723 <artifactId>commons-logging</artifactId>
724 </exclusion>
725 </exclusions>
726 </dependency>
727 <dependency>
728 <groupId>org.springframework</groupId>
729 <artifactId>spring-test</artifactId>
730 <version>${springframework.version}</version>
731 </dependency>
732 <dependency>
733 <groupId>org.springframework</groupId>
734 <artifactId>spring-tx</artifactId>
735 <version>${springframework.version}</version>
736 </dependency>
737 <dependency>
738 <groupId>org.springframework</groupId>
739 <artifactId>spring-web</artifactId>
740 <version>${springframework.version}</version>
741 </dependency>
742 <dependency>
743 <groupId>org.springframework</groupId>
744 <artifactId>spring-webmvc</artifactId>
745 <version>${springframework.version}</version>
746 </dependency>
747 <dependency>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200748 <groupId>org.springframework</groupId>
749 <artifactId>spring-context-support</artifactId>
750 <version>${springframework.version}</version>
751 </dependency>
752 <dependency>
753 <groupId>org.springframework</groupId>
754 <artifactId>spring-orm</artifactId>
Einat Vinouzed7192592019-07-07 14:15:07 +0300755 <version>${springframework.orm.version}</version>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200756 </dependency>
757 <dependency>
758 <groupId>org.springframework</groupId>
759 <artifactId>spring-aop</artifactId>
760 <version>${springframework.version}</version>
761 </dependency>
762
763 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100764 <groupId>org.glassfish.jersey.core</groupId>
765 <artifactId>jersey-client</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200766 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100767 </dependency>
768 <dependency>
769 <groupId>org.glassfish.jersey.connectors</groupId>
770 <artifactId>jersey-jetty-connector</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200771 <version>${jersey.version}</version>
772 </dependency>
773 <!--https://stackoverflow.com/questions/44088493/jersey-stopped-working-with-injectionmanagerfactory-not-found-->
774 <dependency>
775 <groupId>org.glassfish.jersey.inject</groupId>
776 <artifactId>jersey-hk2</artifactId>
777 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100778 </dependency>
779 <dependency>
780 <groupId>com.fasterxml.jackson.jaxrs</groupId>
781 <artifactId>jackson-jaxrs-json-provider</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200782 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100783 </dependency>
784 <dependency>
785 <groupId>commons-beanutils</groupId>
786 <artifactId>commons-beanutils</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100787 </dependency>
788 <dependency>
789 <groupId>com.googlecode.json-simple</groupId>
790 <artifactId>json-simple</artifactId>
791 <version>1.1.1</version>
792 </dependency>
793 <dependency>
794 <groupId>org.seleniumhq.selenium</groupId>
795 <artifactId>selenium-java</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300796 <version>${selenium.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100797 <scope>test</scope>
798 </dependency>
799 <dependency>
800 <groupId>org.seleniumhq.selenium</groupId>
801 <artifactId>selenium-api</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300802 <version>${selenium.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100803 <scope>test</scope>
804 </dependency>
805 <dependency>
806 <groupId>org.testng</groupId>
807 <artifactId>testng</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200808 <version>6.14.3</version>
biniek6f2b2082018-12-17 11:18:05 +0100809 <scope>test</scope>
810 </dependency>
811 <dependency>
812 <groupId>org.mockito</groupId>
813 <artifactId>mockito-core</artifactId>
814 <version>2.23.0</version>
815 <scope>test</scope>
816 </dependency>
817 <dependency>
818 <groupId>org.seleniumhq.selenium</groupId>
819 <artifactId>selenium-firefox-driver</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300820 <version>${selenium.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100821 </dependency>
822 <dependency>
823 <groupId>xml-apis</groupId>
824 <artifactId>xml-apis</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300825 <version>2.0.2</version>
biniek6f2b2082018-12-17 11:18:05 +0100826 </dependency>
827 <dependency>
828 <groupId>org.yaml</groupId>
829 <artifactId>snakeyaml</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300830 <version>1.24</version>
biniek6f2b2082018-12-17 11:18:05 +0100831 </dependency>
832 <dependency>
833 <groupId>org.skyscreamer</groupId>
834 <artifactId>jsonassert</artifactId>
835 <version>1.5.0</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200836 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100837 </dependency>
838 <dependency>
839 <groupId>org.onap.sdc.sdc-tosca</groupId>
840 <artifactId>sdc-tosca</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300841 <version>1.6.0</version>
biniek6f2b2082018-12-17 11:18:05 +0100842 <scope>compile</scope>
843 </dependency>
844 <dependency>
845 <groupId>net.javacrumbs.json-unit</groupId>
846 <artifactId>json-unit</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300847 <version>2.8.0</version>
biniek6f2b2082018-12-17 11:18:05 +0100848 <scope>test</scope>
849 </dependency>
850 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200851 <groupId>org.glassfish.jersey.media</groupId>
852 <artifactId>jersey-media-json-jackson</artifactId>
853 <version>${jersey.version}</version>
854 <scope>test</scope>
855 </dependency>
856 <dependency>
857 <groupId>org.apache.commons</groupId>
858 <artifactId>commons-lang3</artifactId>
Einat Vinouzee601bbd2019-07-16 17:17:36 +0300859 <version>3.9</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200860 </dependency>
861 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100862 <groupId>org.apache.commons</groupId>
863 <artifactId>commons-text</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300864 <version>1.7</version>
biniek6f2b2082018-12-17 11:18:05 +0100865 </dependency>
866 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200867 <groupId>org.apache.commons</groupId>
868 <artifactId>commons-proxy</artifactId>
869 <version>1.0</version>
870 </dependency>
871 <dependency>
Eylon Malind36ae5e2019-08-07 18:36:49 +0300872 <groupId>org.apache.commons</groupId>
873 <artifactId>commons-collections4</artifactId>
874 <version>4.4</version>
875 </dependency>
876 <dependency>
Ittay Stern9c131c12020-01-09 17:54:41 +0200877 <groupId>commons-cli</groupId>
878 <artifactId>commons-cli</artifactId>
879 <version>1.4</version>
880 </dependency>
881 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100882 <groupId>org.hamcrest</groupId>
883 <artifactId>java-hamcrest</artifactId>
884 <version>2.0.0.0</version>
885 <scope>test</scope>
886 </dependency>
887 <dependency>
888 <groupId>org.togglz</groupId>
889 <artifactId>togglz-spring-core</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300890 <version>2.6.1.Final</version>
biniek6f2b2082018-12-17 11:18:05 +0100891 </dependency>
892 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200893 <groupId>com.h2database</groupId>
894 <artifactId>h2</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300895 <version>1.4.199</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200896 <scope>test</scope>
897 </dependency>
898 <dependency>
899 <groupId>javax.xml.bind</groupId>
900 <artifactId>jaxb-api</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300901 <version>2.3.1</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200902 </dependency>
903
904 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100905 <groupId>org.assertj</groupId>
906 <artifactId>assertj-core</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300907 <version>3.13.2</version>
kurczewsb1d73932019-05-17 09:10:27 +0200908 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100909 </dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200910 <dependency>
911 <groupId>com.google.guava</groupId>
912 <artifactId>guava</artifactId>
Einat Vinouze83157b32019-07-11 16:25:44 +0300913 <version>28.0-jre</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200914 </dependency>
Wojciech Sliwka86683c52019-04-09 14:57:02 +0200915 <dependency>
916 <groupId>io.springfox</groupId>
917 <artifactId>springfox-swagger2</artifactId>
918 <version>2.9.2</version>
919 </dependency>
Einat Vinouzee601bbd2019-07-16 17:17:36 +0300920 <dependency>
921 <groupId>org.apache.maven</groupId>
922 <artifactId>maven-artifact</artifactId>
923 <version>3.6.1</version>
924 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200925 </dependencies>
926</project>