blob: b2c5c9dceb0066b5ac8495a3d9310639f2b95c65 [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 Sterndd3ba982019-05-29 10:19:25 +030012 <version>5.0.0-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>
28 <epsdk.version>2.4.0</epsdk.version>
Einat Vinouzed7192592019-07-07 14:15:07 +030029 <springframework.version>5.1.6.RELEASE</springframework.version>
30 <springframework.orm.version>4.3.22.RELEASE</springframework.orm.version>
31 <!-- epsdk-core is importing this class, which is only on spring-orm 4 but not in orm 5:
32 org.springframework.orm.hibernate4.HibernateTransactionManager
33 so following orm.version lets epsdk-core find it -->
biniek6f2b2082018-12-17 11:18:05 +010034 <hibernate.version>4.3.11.Final</hibernate.version>
Ittay Stern9f9e9b22019-02-28 12:09:45 +020035 <jackson.version>2.9.8</jackson.version>
Rina Roib7719ba2019-07-10 15:53:25 +030036 <jersey.version>2.28</jersey.version>
Ittay Stern6ad41e32018-12-31 17:21:27 +020037 <surefire.version>2.22.1</surefire.version>
Ittay Sterneda81402019-02-26 06:32:43 +020038 <sonar.coverage.exclusions>**/webapp/**/*,**/*.js</sonar.coverage.exclusions>
Ittay Stern6ad41e32018-12-31 17:21:27 +020039
biniek6f2b2082018-12-17 11:18:05 +010040 <!-- Skip assembling the zip by default -->
41 <skipassembly>true</skipassembly>
biniek6f2b2082018-12-17 11:18:05 +010042 <nexusproxy>https://nexus.onap.org</nexusproxy>
Ittay Sternb93b96b2019-06-19 14:39:39 +030043 <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath>
44 <releaseNexusPath>content/repositories/releases/</releaseNexusPath>
45 <stagingNexusPath>content/repositories/staging/</stagingNexusPath>
46 <sitePath>content/sites/site/org/onap/vid/${project.version}</sitePath>
Ittay Stern6ad41e32018-12-31 17:21:27 +020047
48 <aspectj.version>1.8.9</aspectj.version>
Einat Vinouzef486e802019-07-11 16:25:44 +030049 <kotlin.version>1.3.30</kotlin.version>
Ittay Stern6ad41e32018-12-31 17:21:27 +020050 <kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
51
golabekec4f9542019-01-28 09:34:48 +010052 <eirslett.version>1.6</eirslett.version>
Ittay Sternf7926712019-07-07 19:23:03 +030053 <node.version>v8.9.4</node.version>
54 <npm.version>5.6.0</npm.version>
golabekec4f9542019-01-28 09:34:48 +010055
Ittay Sternd6544de2019-07-01 17:40:20 +030056 <!-- override using -Drelease_version=foo -Dpatch_version=bar -->
57 <release_version>${env.RELEASE_VERSION}</release_version>
58 <patch_version/>
Einat Vinouzef486e802019-07-11 16:25:44 +030059
60 <reportportal.argline>-javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar -Drp.enable=true -Drp.mode=DEFAULT -Drp.tags="CICD;BE_UNIT;BUILD_${env.BUILD_NUMBER}"</reportportal.argline>
61
biniek6f2b2082018-12-17 11:18:05 +010062 </properties>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020063
64
biniek6f2b2082018-12-17 11:18:05 +010065 <!-- this should be commented for local debugging -->
66 <!-- <deployenv>local</deployenv> -->
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020067
biniek6f2b2082018-12-17 11:18:05 +010068 <repositories>
69 <repository>
70 <id>ecomp-releases</id>
71 <name>VID Release Repository</name>
Ittay Sternb93b96b2019-06-19 14:39:39 +030072 <url>${nexusproxy}/${releaseNexusPath}</url>
biniek6f2b2082018-12-17 11:18:05 +010073 </repository>
74 <repository>
75 <id>ecomp-snapshots</id>
76 <name>VID Snapshot Repository</name>
Ittay Sternb93b96b2019-06-19 14:39:39 +030077 <url>${nexusproxy}/${snapshotNexusPath}</url>
biniek6f2b2082018-12-17 11:18:05 +010078 </repository>
79 <repository>
80 <id>ecomp-staging</id>
81 <name>VID Staging Repository</name>
Ittay Sternb93b96b2019-06-19 14:39:39 +030082 <url>${nexusproxy}/${stagingNexusPath}</url>
biniek6f2b2082018-12-17 11:18:05 +010083 </repository>
84 <repository>
85 <!-- Snapshots repository has ECOMP snapshot artifacts -->
86 <id>oss-snapshots</id>
87 <name>oss Central - Snapshots</name>
88 <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url>
89 </repository>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020090
biniek6f2b2082018-12-17 11:18:05 +010091 </repositories>
92 <distributionManagement>
93 <repository>
94 <id>ecomp-releases</id>
95 <name>VID Release Repository</name>
96 <url>${nexusproxy}/${releaseNexusPath}</url>
97 </repository>
98 <snapshotRepository>
99 <id>ecomp-snapshots</id>
100 <name>VID Snapshot Repository</name>
101 <url>${nexusproxy}/${snapshotNexusPath}</url>
102 </snapshotRepository>
103 <!-- added for javadoc -->
104 <site>
105 <id>ecomp-site</id>
Ittay Sternb93b96b2019-06-19 14:39:39 +0300106 <url>dav:${nexusproxy}/${sitePath}</url>
biniek6f2b2082018-12-17 11:18:05 +0100107 </site>
108 </distributionManagement>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200109
biniek6f2b2082018-12-17 11:18:05 +0100110 <build>
111 <finalName>vid-common</finalName>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200112
biniek6f2b2082018-12-17 11:18:05 +0100113 <plugins>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200114
115 <plugin>
116 <artifactId>kotlin-maven-plugin</artifactId>
117 <groupId>org.jetbrains.kotlin</groupId>
118 <version>${kotlin.version}</version>
119 <executions>
120 <execution>
121 <id>compile</id>
122 <goals> <goal>compile</goal> </goals>
123 <configuration>
124 <sourceDirs>
125 <sourceDir>${project.basedir}/src/main/java</sourceDir>
126 </sourceDirs>
127 </configuration>
128 </execution>
129 <execution>
130 <id>test-compile</id>
131 <goals> <goal>test-compile</goal> </goals>
132 <configuration>
133 <sourceDirs>
134 <sourceDir>${project.basedir}/src/test/java</sourceDir>
135 </sourceDirs>
136 </configuration>
137 </execution>
138 </executions>
139 </plugin>
biniek6f2b2082018-12-17 11:18:05 +0100140 <plugin>
141 <groupId>org.jacoco</groupId>
142 <artifactId>jacoco-maven-plugin</artifactId>
Ittay Stern67a23ab2019-02-25 19:21:32 +0200143 <version>0.8.3</version>
biniek6f2b2082018-12-17 11:18:05 +0100144 <executions>
145 <execution>
146 <id>default-prepare-agent</id>
147 <goals>
148 <goal>prepare-agent</goal>
149 </goals>
150 </execution>
151 <execution>
152 <id>default-report</id>
153 <goals>
154 <goal>report</goal>
155 </goals>
156 </execution>
157 </executions>
158 </plugin>
159 <plugin>
160 <groupId>org.apache.tomcat.maven</groupId>
161 <artifactId>tomcat6-maven-plugin</artifactId>
162 <version>2.2</version>
163 </plugin>
164 <plugin>
165 <groupId>org.apache.tomcat.maven</groupId>
166 <artifactId>tomcat7-maven-plugin</artifactId>
167 <version>2.2</version>
168 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200169
biniek6f2b2082018-12-17 11:18:05 +0100170 <plugin>
golabekec4f9542019-01-28 09:34:48 +0100171 <groupId>com.github.eirslett</groupId>
172 <artifactId>frontend-maven-plugin</artifactId>
173 <version>${eirslett.version}</version>
174 <executions>
175 <execution>
176 <id>install node and npm</id>
177 <goals>
178 <goal>install-node-and-npm</goal>
179 </goals>
180 <phase>generate-resources</phase>
181 <configuration>
Ittay Sternf7926712019-07-07 19:23:03 +0300182 <npmVersion>${npm.version}</npmVersion>
golabekec4f9542019-01-28 09:34:48 +0100183 <nodeVersion>${node.version}</nodeVersion>
184 </configuration>
185 </execution>
186 <execution>
Ittay Stern1124e962019-06-18 07:50:50 +0300187 <id>npm config list</id>
188 <configuration>
189 <arguments>config ls -l</arguments>
190 </configuration>
191 <goals>
192 <goal>npm</goal>
193 </goals>
194 <phase>generate-resources</phase>
195 </execution>
196 <execution>
Ittay Stern779c51d2019-05-16 15:47:08 +0300197 <id>npm install</id>
198 <configuration>
199 <arguments>install</arguments>
200 </configuration>
201 <goals>
202 <goal>npm</goal>
203 </goals>
204 <phase>generate-resources</phase>
205 </execution>
206 <execution>
golabekec4f9542019-01-28 09:34:48 +0100207 <id>npm run-script build</id>
208 <configuration>
209 <arguments>run-script build</arguments>
210 </configuration>
211 <goals>
212 <goal>npm</goal>
213 </goals>
214 <phase>generate-resources</phase>
215 </execution>
216 </executions>
217 </plugin>
218
219 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100220 <groupId>org.apache.maven.plugins</groupId>
221 <artifactId>maven-compiler-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200222 <version>3.5.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100223 <configuration>
224 <source>1.8</source>
225 <target>1.8</target>
226 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200227
228 <executions>
229 <!-- Replacing default-compile as it is treated specially by maven -->
230 <execution>
231 <id>default-compile</id>
232 <phase>none</phase>
233 </execution>
234 <!-- Replacing default-testCompile as it is treated specially by maven -->
235 <execution>
236 <id>default-testCompile</id>
237 <phase>none</phase>
238 </execution>
239 <execution>
240 <id>java-compile</id>
241 <phase>compile</phase>
242 <goals> <goal>compile</goal> </goals>
243 </execution>
244 <execution>
245 <id>java-test-compile</id>
246 <phase>test-compile</phase>
247 <goals> <goal>testCompile</goal> </goals>
248 </execution>
249 </executions>
250
biniek6f2b2082018-12-17 11:18:05 +0100251 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200252
biniek6f2b2082018-12-17 11:18:05 +0100253 <plugin>
Ittay Sternd6544de2019-07-01 17:40:20 +0300254 <groupId>com.google.code.maven-replacer-plugin</groupId>
255 <artifactId>replacer</artifactId>
256 <version>1.5.3</version>
257 <executions>
258 <execution>
259 <phase>prepare-package</phase>
260 <goals>
261 <goal>replace</goal>
262 </goals>
263 </execution>
264 </executions>
265 <configuration>
266 <regex>false</regex>
267 <file>${project.basedir}/src/main/webapp/app/vid/scripts/constants/version.json</file>
268 <replacements>
269 <replacement>
270 <token>BUILD_NUMBER</token>
271 <value>${release_version}.${patch_version}.${env.BUILD_NUMBER}</value>
272 </replacement>
273 </replacements>
274 </configuration>
275 </plugin>
276
277 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100278 <groupId>org.apache.maven.plugins</groupId>
279 <artifactId>maven-surefire-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200280 <version>${surefire.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100281 <configuration>
biniek6f2b2082018-12-17 11:18:05 +0100282 <includes>
283 <include>**/Test*.java</include>
284 <include>**/*Test.java</include>
285 <include>**/*TestCase.java</include>
286 </includes>
287 <excludes>
288 <exclude>**/selenium/*.java</exclude>
289 <exclude>**/integrationTest/*.java</exclude>
290 </excludes>
291 <additionalClasspathElements>
292 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
293 </additionalClasspathElements>
294 <systemPropertyVariables>
295 <container.classpath>classpath:</container.classpath>
296 </systemPropertyVariables>
297 <useSystemClassLoader>false</useSystemClassLoader>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200298 <properties>
299 <property>
300 <!-- avoid running JUnit tests within surefire-testng provider -->
301 <name>junit</name>
302 <value>false</value>
303 </property>
Einat Vinouzef486e802019-07-11 16:25:44 +0300304 <property>
305 <name>usedefaultlisteners</name>
306 <value>false</value>
307 </property>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200308 </properties>
309 <threadCount>1</threadCount>
biniek6f2b2082018-12-17 11:18:05 +0100310 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200311 <dependencies>
312 <!-- Running TestNG and JUnit Tests -->
313 <!-- https://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html -->
314 <dependency>
315 <groupId>org.apache.maven.surefire</groupId>
316 <artifactId>surefire-junit47</artifactId>
317 <version>${surefire.version}</version>
318 </dependency>
319 <dependency>
320 <groupId>org.apache.maven.surefire</groupId>
321 <artifactId>surefire-testng</artifactId>
322 <version>${surefire.version}</version>
323 </dependency>
324 </dependencies>
biniek6f2b2082018-12-17 11:18:05 +0100325 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200326
biniek6f2b2082018-12-17 11:18:05 +0100327 <plugin>
328 <artifactId>maven-assembly-plugin</artifactId>
329 <configuration>
330 <skipAssembly>${skipassembly}</skipAssembly>
331 <descriptors>
332 <descriptor>${basedir}/distribution.xml</descriptor>
333 </descriptors>
334 </configuration>
335 <executions>
336 <execution>
337 <id>make-assembly</id>
338 <phase>package</phase>
339 <goals>
340 <goal>single</goal>
341 </goals>
342 </execution>
343 </executions>
344 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200345
346
biniek6f2b2082018-12-17 11:18:05 +0100347 <plugin>
348 <groupId>org.apache.maven.plugins</groupId>
349 <artifactId>maven-war-plugin</artifactId>
350 <version>3.0.0</version>
351 <configuration>
352 <!-- Build a jar with all the Java classes -->
353 <attachClasses>true</attachClasses>
354 <!-- Do not put any jars in the war -->
355 <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
356 </configuration>
357 </plugin>
358 <plugin>
359 <groupId>org.apache.maven.plugins</groupId>
360 <artifactId>maven-site-plugin</artifactId>
361 <version>3.6</version>
362 <dependencies>
363 <dependency>
364 <groupId>org.apache.maven.wagon</groupId>
365 <artifactId>wagon-webdav-jackrabbit</artifactId>
366 <version>2.10</version>
367 </dependency>
368 </dependencies>
369 </plugin>
370 <plugin>
371 <groupId>pl.project13.maven</groupId>
372 <artifactId>git-commit-id-plugin</artifactId>
373 <version>2.2.4</version>
374 <executions>
375 <execution>
376 <id>get-the-git-infos</id>
377 <goals>
378 <goal>revision</goal>
379 </goals>
380 </execution>
381 </executions>
382 <configuration>
383 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
384 <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
385 <dateFormatTimeZone>${user.timezone}</dateFormatTimeZone>
386 <generateGitPropertiesFile>true</generateGitPropertiesFile>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200387 <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
biniek6f2b2082018-12-17 11:18:05 +0100388 <includeOnlyProperties>
389 <includeOnlyProperty>^git.commit.id$</includeOnlyProperty>
390 <includeOnlyProperty>^git.commit.message.short$</includeOnlyProperty>
391 <includeOnlyProperty>^git.commit.time$</includeOnlyProperty>
392 </includeOnlyProperties>
393 </configuration>
394 </plugin>
Ittay Sterne0a10282019-02-27 17:32:09 +0200395
396 <plugin>
397 <!--
398 Replace phase "none" with "process-sources" to enable.
399 Set organizationName as desired.
400 Then run `mvn license:check-file-header`, or even `mvn
401 license:update-file-header`.
402 -->
403 <groupId>org.codehaus.mojo</groupId>
404 <artifactId>license-maven-plugin</artifactId>
405 <version>1.17</version>
406
407 <executions>
408 <execution>
409 <id>first</id>
410 <goals>
411 <goal>update-file-header</goal>
412 </goals>
413 <!-- replace phase "none" with "process-sources" to enable -->
414 <phase>none</phase>
415 </execution>
416 </executions>
417
418 <configuration>
419 <canUpdateCopyright>false</canUpdateCopyright>
420 <canUpdateDescription>false</canUpdateDescription>
421 <licenseName>apache_v2</licenseName>
422 <processStartTag>============LICENSE_START=======================================================</processStartTag>
423 <processEndTag>============LICENSE_END=========================================================</processEndTag>
424 <sectionDelimiter>================================================================================</sectionDelimiter>
425 <projectName>VID</projectName>
426 <inceptionYear>2017</inceptionYear>
427 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
428 <canUpdateLicense>true</canUpdateLicense>
429 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
430 <emptyLineAfterHeader>true</emptyLineAfterHeader>
431 <verbose>false</verbose>
432
433 <includes>
434 <include>**/*.java</include>
435 <include>**/*.kt</include>
436 <include>**/*.jsp</include>
437 <include>**/*.xml</include>
438 <include>**/*.js</include>
439 <include>**/*.ts</include>
440 <include>**/*.html</include>
441 <include>**/*.css</include>
442 <include>**/*.sql</include>
443 </includes>
444
445 <extraExtensions>
446 <sql>mysql</sql>
447 </extraExtensions>
448
449 <roots>
450 <root>src/main</root>
451 <root>src/test</root>
452 </roots>
453
454 <excludes>
455 <exclude>**/app/vid/external/**/*</exclude>
456 <exclude>**/main/webapp/WEB-INF/**/*</exclude>
457 <exclude>**/test/resources/WEB-INF/**/*</exclude>
458 <exclude>**/app/vid/scripts/angular-ui-tree.js</exclude>
459 </excludes>
460
461 </configuration>
462 </plugin>
463
biniek6f2b2082018-12-17 11:18:05 +0100464 </plugins>
465 </build>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200466
biniek6f2b2082018-12-17 11:18:05 +0100467 <reporting>
468 <plugins>
469 <plugin>
470 <groupId>org.apache.maven.plugins</groupId>
471 <artifactId>maven-javadoc-plugin</artifactId>
472 <version>2.10.4</version>
473 <configuration>
474 <failOnError>false</failOnError>
475 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
476 <docletArtifact>
477 <groupId>org.umlgraph</groupId>
478 <artifactId>umlgraph</artifactId>
479 <version>5.6</version>
480 </docletArtifact>
481 <additionalparam>-views</additionalparam>
482 <useStandardDocletOptions>true</useStandardDocletOptions>
483 </configuration>
484 </plugin>
485 </plugins>
486 </reporting>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200487
biniek6f2b2082018-12-17 11:18:05 +0100488 <dependencies>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200489
biniek6f2b2082018-12-17 11:18:05 +0100490 <dependency>
491 <groupId>com.opencsv</groupId>
492 <artifactId>opencsv</artifactId>
493 <version>4.1</version>
494 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200495
biniek6f2b2082018-12-17 11:18:05 +0100496 <!-- HTTP client -->
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200497
biniek6f2b2082018-12-17 11:18:05 +0100498 <dependency>
499 <groupId>io.joshworks.unirest</groupId>
500 <artifactId>unirest-java</artifactId>
501 <version>0.2.1</version>
502 </dependency>
503 <dependency>
504 <groupId>org.apache.httpcomponents</groupId>
505 <artifactId>httpclient</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100506 </dependency>
507 <dependency>
508 <groupId>org.apache.httpcomponents</groupId>
509 <artifactId>httpasyncclient</artifactId>
510 <version>4.0.2</version>
511 </dependency>
512 <dependency>
513 <groupId>org.apache.httpcomponents</groupId>
514 <artifactId>httpmime</artifactId>
Ittay Stern9f9e9b22019-02-28 12:09:45 +0200515 <version>4.5.7</version>
biniek6f2b2082018-12-17 11:18:05 +0100516 </dependency>
517 <dependency>
518 <groupId>com.xebialabs.restito</groupId>
519 <artifactId>restito</artifactId>
520 <version>0.9.3</version>
521 <scope>test</scope>
522 </dependency>
kurczewsf477d1d2019-03-20 09:52:12 +0100523 <dependency>
524 <groupId>org.jeasy</groupId>
525 <artifactId>easy-random-core</artifactId>
526 <version>4.0.0.RC1</version>
527 <scope>test</scope>
528 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200529
biniek6f2b2082018-12-17 11:18:05 +0100530 <!-- Helpers -->
531 <dependency>
532 <groupId>io.vavr</groupId>
533 <artifactId>vavr</artifactId>
534 <version>0.9.2</version>
535 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200536
biniek6f2b2082018-12-17 11:18:05 +0100537 <!-- SDK overlay war -->
538 <dependency>
539 <groupId>org.onap.portal.sdk</groupId>
540 <artifactId>epsdk-app-overlay</artifactId>
541 <version>${epsdk.version}</version>
542 <type>war</type>
543 </dependency>
544 <dependency>
545 <groupId>org.onap.portal.sdk</groupId>
546 <artifactId>epsdk-app-common</artifactId>
547 <version>${epsdk.version}</version>
548 <type>jar</type>
549 </dependency>
550
551 <dependency>
552 <groupId>org.onap.portal.sdk</groupId>
553 <artifactId>epsdk-core</artifactId>
554 <version>${epsdk.version}</version>
555 </dependency>
556 <dependency>
557 <groupId>org.onap.portal.sdk</groupId>
558 <artifactId>epsdk-analytics</artifactId>
559 <version>${epsdk.version}</version>
560 <exclusions>
561 <exclusion>
562 <groupId>com.lowagie</groupId>
563 <artifactId>itext</artifactId>
564 </exclusion>
565 </exclusions>
566 </dependency>
567 <dependency>
568 <groupId>org.onap.portal.sdk</groupId>
569 <artifactId>epsdk-workflow</artifactId>
570 <version>${epsdk.version}</version>
571 </dependency>
572 <dependency>
573 <groupId>com.att.eelf</groupId>
574 <artifactId>eelf-core</artifactId>
575 <version>1.0.0</version>
576 <exclusions>
577 <exclusion>
578 <artifactId>powermock-api-mockito</artifactId>
579 <groupId>org.powermock</groupId>
580 </exclusion>
581 </exclusions>
582 </dependency>
583 <dependency>
584 <groupId>ch.qos.logback</groupId>
biniek6f2b2082018-12-17 11:18:05 +0100585 <artifactId>logback-classic</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100586 </dependency>
587
Ittay Stern6ad41e32018-12-31 17:21:27 +0200588 <dependency>
589 <groupId>org.jetbrains.kotlin</groupId>
590 <artifactId>kotlin-stdlib-jdk8</artifactId>
591 <version>${kotlin.version}</version>
592 </dependency>
593
biniek6f2b2082018-12-17 11:18:05 +0100594 <!-- Mapper -->
595 <dependency>
596 <groupId>com.fasterxml.jackson.core</groupId>
597 <artifactId>jackson-annotations</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200598 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100599 </dependency>
600 <dependency>
601 <groupId>com.fasterxml.jackson.core</groupId>
602 <artifactId>jackson-core</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200603 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100604 </dependency>
605 <dependency>
606 <groupId>com.fasterxml.jackson.core</groupId>
607 <artifactId>jackson-databind</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200608 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100609 </dependency>
610 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200611 <groupId>com.fasterxml.jackson.module</groupId>
612 <artifactId>jackson-module-kotlin</artifactId>
613 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100614 </dependency>
Ittay Stern2687d312019-02-21 17:26:33 +0200615 <!-- c3p0 is to override epsdk-app-common's c3p0 0.9.5.2 vulnerability -->
biniek6f2b2082018-12-17 11:18:05 +0100616 <dependency>
617 <groupId>com.mchange</groupId>
618 <artifactId>c3p0</artifactId>
golabek22b96132019-04-23 11:11:12 +0200619 <version>0.9.5.4</version>
biniek6f2b2082018-12-17 11:18:05 +0100620 </dependency>
621 <dependency>
622 <groupId>io.searchbox</groupId>
623 <artifactId>jest</artifactId>
624 <version>2.0.0</version>
625 <exclusions>
626 <exclusion>
627 <groupId>commons-logging</groupId>
628 <artifactId>commons-logging</artifactId>
629 </exclusion>
630 </exclusions>
631 </dependency>
632 <dependency>
633 <groupId>javax.servlet</groupId>
634 <artifactId>javax.servlet-api</artifactId>
635 <version>3.1.0</version>
636 <scope>provided</scope>
637 </dependency>
638 <dependency>
639 <groupId>junit</groupId>
640 <artifactId>junit</artifactId>
641 <version>4.12</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200642 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100643 </dependency>
644 <dependency>
645 <groupId>commons-io</groupId>
646 <artifactId>commons-io</artifactId>
647 <version>2.4</version>
648 <!--<scope>test</scope>-->
649 </dependency>
650 <dependency>
651 <groupId>com.google.code.bean-matchers</groupId>
652 <artifactId>bean-matchers</artifactId>
653 <version>0.11</version>
654 <scope>test</scope>
655 </dependency>
656 <dependency>
657 <groupId>org.json</groupId>
658 <artifactId>json</artifactId>
659 <version>20160212</version>
660 </dependency>
661 <dependency>
662 <groupId>org.quartz-scheduler</groupId>
663 <artifactId>quartz</artifactId>
664 <version>2.2.1</version>
665 <exclusions>
666 <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 -->
667 <exclusion>
668 <groupId>c3p0</groupId>
669 <artifactId>c3p0</artifactId>
670 </exclusion>
671 </exclusions>
672 </dependency>
673 <!-- bridge to implement commons-logging using slf4j -->
674 <dependency>
675 <groupId>org.slf4j</groupId>
676 <artifactId>jcl-over-slf4j</artifactId>
677 <version>1.7.12</version>
678 </dependency>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200679
680 <!-- springframework to override epsdk-app-common's and epsdk-core's versions -->
biniek6f2b2082018-12-17 11:18:05 +0100681 <dependency>
682 <groupId>org.springframework</groupId>
683 <artifactId>spring-core</artifactId>
684 <version>${springframework.version}</version>
685 <exclusions>
686 <exclusion>
687 <groupId>commons-logging</groupId>
688 <artifactId>commons-logging</artifactId>
689 </exclusion>
690 </exclusions>
691 </dependency>
692 <dependency>
693 <groupId>org.springframework</groupId>
694 <artifactId>spring-test</artifactId>
695 <version>${springframework.version}</version>
696 </dependency>
697 <dependency>
698 <groupId>org.springframework</groupId>
699 <artifactId>spring-tx</artifactId>
700 <version>${springframework.version}</version>
701 </dependency>
702 <dependency>
703 <groupId>org.springframework</groupId>
704 <artifactId>spring-web</artifactId>
705 <version>${springframework.version}</version>
706 </dependency>
707 <dependency>
708 <groupId>org.springframework</groupId>
709 <artifactId>spring-webmvc</artifactId>
710 <version>${springframework.version}</version>
711 </dependency>
712 <dependency>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200713 <groupId>org.springframework</groupId>
714 <artifactId>spring-context-support</artifactId>
715 <version>${springframework.version}</version>
716 </dependency>
717 <dependency>
718 <groupId>org.springframework</groupId>
719 <artifactId>spring-orm</artifactId>
Einat Vinouzed7192592019-07-07 14:15:07 +0300720 <version>${springframework.orm.version}</version>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200721 </dependency>
722 <dependency>
723 <groupId>org.springframework</groupId>
724 <artifactId>spring-aop</artifactId>
725 <version>${springframework.version}</version>
726 </dependency>
727
728 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100729 <groupId>org.glassfish.jersey.core</groupId>
730 <artifactId>jersey-client</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200731 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100732 </dependency>
733 <dependency>
734 <groupId>org.glassfish.jersey.connectors</groupId>
735 <artifactId>jersey-jetty-connector</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200736 <version>${jersey.version}</version>
737 </dependency>
738 <!--https://stackoverflow.com/questions/44088493/jersey-stopped-working-with-injectionmanagerfactory-not-found-->
739 <dependency>
740 <groupId>org.glassfish.jersey.inject</groupId>
741 <artifactId>jersey-hk2</artifactId>
742 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100743 </dependency>
744 <dependency>
745 <groupId>com.fasterxml.jackson.jaxrs</groupId>
746 <artifactId>jackson-jaxrs-json-provider</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200747 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100748 </dependency>
749 <dependency>
750 <groupId>commons-beanutils</groupId>
751 <artifactId>commons-beanutils</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100752 </dependency>
753 <dependency>
754 <groupId>com.googlecode.json-simple</groupId>
755 <artifactId>json-simple</artifactId>
756 <version>1.1.1</version>
757 </dependency>
758 <dependency>
759 <groupId>org.seleniumhq.selenium</groupId>
760 <artifactId>selenium-java</artifactId>
761 <version>2.53.1</version>
762 <scope>test</scope>
763 </dependency>
764 <dependency>
765 <groupId>org.seleniumhq.selenium</groupId>
766 <artifactId>selenium-api</artifactId>
767 <version>2.53.1</version>
768 <scope>test</scope>
769 </dependency>
770 <dependency>
771 <groupId>org.testng</groupId>
772 <artifactId>testng</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200773 <version>6.14.3</version>
biniek6f2b2082018-12-17 11:18:05 +0100774 <scope>test</scope>
775 </dependency>
776 <dependency>
777 <groupId>org.mockito</groupId>
778 <artifactId>mockito-core</artifactId>
779 <version>2.23.0</version>
780 <scope>test</scope>
781 </dependency>
782 <dependency>
783 <groupId>org.seleniumhq.selenium</groupId>
784 <artifactId>selenium-firefox-driver</artifactId>
785 <version>2.53.1</version>
786 </dependency>
787 <dependency>
788 <groupId>xml-apis</groupId>
789 <artifactId>xml-apis</artifactId>
790 <version>1.4.01</version>
791 </dependency>
792 <dependency>
793 <groupId>org.yaml</groupId>
794 <artifactId>snakeyaml</artifactId>
795 <version>1.16</version>
796 </dependency>
797 <dependency>
798 <groupId>org.skyscreamer</groupId>
799 <artifactId>jsonassert</artifactId>
800 <version>1.5.0</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200801 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100802 </dependency>
803 <dependency>
804 <groupId>org.onap.sdc.sdc-tosca</groupId>
805 <artifactId>sdc-tosca</artifactId>
Ittay Stern2bc8ebd2019-05-21 19:38:54 +0300806 <version>1.5.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100807 <scope>compile</scope>
808 </dependency>
809 <dependency>
810 <groupId>net.javacrumbs.json-unit</groupId>
811 <artifactId>json-unit</artifactId>
Einat Vinouzef486e802019-07-11 16:25:44 +0300812 <version>2.2.0</version>
biniek6f2b2082018-12-17 11:18:05 +0100813 <scope>test</scope>
814 </dependency>
815 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200816 <groupId>org.glassfish.jersey.media</groupId>
817 <artifactId>jersey-media-json-jackson</artifactId>
818 <version>${jersey.version}</version>
819 <scope>test</scope>
820 </dependency>
821 <dependency>
822 <groupId>org.apache.commons</groupId>
823 <artifactId>commons-lang3</artifactId>
824 <version>3.6</version>
825 </dependency>
826 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100827 <groupId>org.apache.commons</groupId>
828 <artifactId>commons-text</artifactId>
829 <version>1.1</version>
830 </dependency>
831 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200832 <groupId>org.apache.commons</groupId>
833 <artifactId>commons-proxy</artifactId>
834 <version>1.0</version>
835 </dependency>
836 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100837 <groupId>org.hamcrest</groupId>
838 <artifactId>java-hamcrest</artifactId>
839 <version>2.0.0.0</version>
840 <scope>test</scope>
841 </dependency>
842 <dependency>
843 <groupId>org.togglz</groupId>
844 <artifactId>togglz-spring-core</artifactId>
845 <version>2.5.0.Final</version>
846 </dependency>
847 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200848 <groupId>com.h2database</groupId>
849 <artifactId>h2</artifactId>
850 <version>1.4.196</version>
851 <scope>test</scope>
852 </dependency>
853 <dependency>
854 <groupId>javax.xml.bind</groupId>
855 <artifactId>jaxb-api</artifactId>
856 <version>2.2.11</version>
857 </dependency>
858
859 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100860 <groupId>org.assertj</groupId>
861 <artifactId>assertj-core</artifactId>
862 <version>3.10.0</version>
kurczewsb1d73932019-05-17 09:10:27 +0200863 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100864 </dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200865 <dependency>
866 <groupId>com.google.guava</groupId>
867 <artifactId>guava</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200868 </dependency>
Wojciech Sliwka86683c52019-04-09 14:57:02 +0200869 <dependency>
870 <groupId>io.springfox</groupId>
871 <artifactId>springfox-swagger2</artifactId>
872 <version>2.9.2</version>
873 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200874 </dependencies>
875</project>