blob: d36f5921ee237f322e88321a697ed5445c11545b [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>
Ittay Stern3bbd23f2019-03-26 11:25:37 +020029 <springframework.version>4.3.22.RELEASE</springframework.version>
biniek6f2b2082018-12-17 11:18:05 +010030 <hibernate.version>4.3.11.Final</hibernate.version>
Ittay Stern9f9e9b22019-02-28 12:09:45 +020031 <jackson.version>2.9.8</jackson.version>
Ittay Stern6ad41e32018-12-31 17:21:27 +020032 <jersey.version>2.27</jersey.version>
33 <surefire.version>2.22.1</surefire.version>
Ittay Sterneda81402019-02-26 06:32:43 +020034 <sonar.coverage.exclusions>**/webapp/**/*,**/*.js</sonar.coverage.exclusions>
Ittay Stern6ad41e32018-12-31 17:21:27 +020035
biniek6f2b2082018-12-17 11:18:05 +010036 <!-- Skip assembling the zip by default -->
37 <skipassembly>true</skipassembly>
biniek6f2b2082018-12-17 11:18:05 +010038 <nexusproxy>https://nexus.onap.org</nexusproxy>
Ittay Sternb93b96b2019-06-19 14:39:39 +030039 <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath>
40 <releaseNexusPath>content/repositories/releases/</releaseNexusPath>
41 <stagingNexusPath>content/repositories/staging/</stagingNexusPath>
42 <sitePath>content/sites/site/org/onap/vid/${project.version}</sitePath>
Ittay Stern6ad41e32018-12-31 17:21:27 +020043
44 <aspectj.version>1.8.9</aspectj.version>
45 <kotlin.version>1.3.11</kotlin.version>
46 <kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
47
golabekec4f9542019-01-28 09:34:48 +010048 <eirslett.version>1.6</eirslett.version>
Ittay Sternf7926712019-07-07 19:23:03 +030049 <node.version>v8.9.4</node.version>
50 <npm.version>5.6.0</npm.version>
golabekec4f9542019-01-28 09:34:48 +010051
Ittay Sternd6544de2019-07-01 17:40:20 +030052 <!-- override using -Drelease_version=foo -Dpatch_version=bar -->
53 <release_version>${env.RELEASE_VERSION}</release_version>
54 <patch_version/>
biniek6f2b2082018-12-17 11:18:05 +010055 </properties>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020056
57
biniek6f2b2082018-12-17 11:18:05 +010058 <!-- this should be commented for local debugging -->
59 <!-- <deployenv>local</deployenv> -->
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020060
biniek6f2b2082018-12-17 11:18:05 +010061 <repositories>
62 <repository>
63 <id>ecomp-releases</id>
64 <name>VID Release Repository</name>
Ittay Sternb93b96b2019-06-19 14:39:39 +030065 <url>${nexusproxy}/${releaseNexusPath}</url>
biniek6f2b2082018-12-17 11:18:05 +010066 </repository>
67 <repository>
68 <id>ecomp-snapshots</id>
69 <name>VID Snapshot Repository</name>
Ittay Sternb93b96b2019-06-19 14:39:39 +030070 <url>${nexusproxy}/${snapshotNexusPath}</url>
biniek6f2b2082018-12-17 11:18:05 +010071 </repository>
72 <repository>
73 <id>ecomp-staging</id>
74 <name>VID Staging Repository</name>
Ittay Sternb93b96b2019-06-19 14:39:39 +030075 <url>${nexusproxy}/${stagingNexusPath}</url>
biniek6f2b2082018-12-17 11:18:05 +010076 </repository>
77 <repository>
78 <!-- Snapshots repository has ECOMP snapshot artifacts -->
79 <id>oss-snapshots</id>
80 <name>oss Central - Snapshots</name>
81 <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url>
82 </repository>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020083
biniek6f2b2082018-12-17 11:18:05 +010084 </repositories>
85 <distributionManagement>
86 <repository>
87 <id>ecomp-releases</id>
88 <name>VID Release Repository</name>
89 <url>${nexusproxy}/${releaseNexusPath}</url>
90 </repository>
91 <snapshotRepository>
92 <id>ecomp-snapshots</id>
93 <name>VID Snapshot Repository</name>
94 <url>${nexusproxy}/${snapshotNexusPath}</url>
95 </snapshotRepository>
96 <!-- added for javadoc -->
97 <site>
98 <id>ecomp-site</id>
Ittay Sternb93b96b2019-06-19 14:39:39 +030099 <url>dav:${nexusproxy}/${sitePath}</url>
biniek6f2b2082018-12-17 11:18:05 +0100100 </site>
101 </distributionManagement>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200102
biniek6f2b2082018-12-17 11:18:05 +0100103 <build>
104 <finalName>vid-common</finalName>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200105
biniek6f2b2082018-12-17 11:18:05 +0100106 <plugins>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200107
108 <plugin>
109 <artifactId>kotlin-maven-plugin</artifactId>
110 <groupId>org.jetbrains.kotlin</groupId>
111 <version>${kotlin.version}</version>
112 <executions>
113 <execution>
114 <id>compile</id>
115 <goals> <goal>compile</goal> </goals>
116 <configuration>
117 <sourceDirs>
118 <sourceDir>${project.basedir}/src/main/java</sourceDir>
119 </sourceDirs>
120 </configuration>
121 </execution>
122 <execution>
123 <id>test-compile</id>
124 <goals> <goal>test-compile</goal> </goals>
125 <configuration>
126 <sourceDirs>
127 <sourceDir>${project.basedir}/src/test/java</sourceDir>
128 </sourceDirs>
129 </configuration>
130 </execution>
131 </executions>
132 </plugin>
biniek6f2b2082018-12-17 11:18:05 +0100133 <plugin>
134 <groupId>org.jacoco</groupId>
135 <artifactId>jacoco-maven-plugin</artifactId>
Ittay Stern67a23ab2019-02-25 19:21:32 +0200136 <version>0.8.3</version>
biniek6f2b2082018-12-17 11:18:05 +0100137 <executions>
138 <execution>
139 <id>default-prepare-agent</id>
140 <goals>
141 <goal>prepare-agent</goal>
142 </goals>
143 </execution>
144 <execution>
145 <id>default-report</id>
146 <goals>
147 <goal>report</goal>
148 </goals>
149 </execution>
150 </executions>
151 </plugin>
152 <plugin>
153 <groupId>org.apache.tomcat.maven</groupId>
154 <artifactId>tomcat6-maven-plugin</artifactId>
155 <version>2.2</version>
156 </plugin>
157 <plugin>
158 <groupId>org.apache.tomcat.maven</groupId>
159 <artifactId>tomcat7-maven-plugin</artifactId>
160 <version>2.2</version>
161 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200162
biniek6f2b2082018-12-17 11:18:05 +0100163 <plugin>
golabekec4f9542019-01-28 09:34:48 +0100164 <groupId>com.github.eirslett</groupId>
165 <artifactId>frontend-maven-plugin</artifactId>
166 <version>${eirslett.version}</version>
167 <executions>
168 <execution>
169 <id>install node and npm</id>
170 <goals>
171 <goal>install-node-and-npm</goal>
172 </goals>
173 <phase>generate-resources</phase>
174 <configuration>
Ittay Sternf7926712019-07-07 19:23:03 +0300175 <npmVersion>${npm.version}</npmVersion>
golabekec4f9542019-01-28 09:34:48 +0100176 <nodeVersion>${node.version}</nodeVersion>
177 </configuration>
178 </execution>
179 <execution>
Ittay Stern1124e962019-06-18 07:50:50 +0300180 <id>npm config list</id>
181 <configuration>
182 <arguments>config ls -l</arguments>
183 </configuration>
184 <goals>
185 <goal>npm</goal>
186 </goals>
187 <phase>generate-resources</phase>
188 </execution>
189 <execution>
Ittay Stern779c51d2019-05-16 15:47:08 +0300190 <id>npm install</id>
191 <configuration>
192 <arguments>install</arguments>
193 </configuration>
194 <goals>
195 <goal>npm</goal>
196 </goals>
197 <phase>generate-resources</phase>
198 </execution>
199 <execution>
golabekec4f9542019-01-28 09:34:48 +0100200 <id>npm run-script build</id>
201 <configuration>
202 <arguments>run-script build</arguments>
203 </configuration>
204 <goals>
205 <goal>npm</goal>
206 </goals>
207 <phase>generate-resources</phase>
208 </execution>
209 </executions>
210 </plugin>
211
212 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100213 <groupId>org.apache.maven.plugins</groupId>
214 <artifactId>maven-compiler-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200215 <version>3.5.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100216 <configuration>
217 <source>1.8</source>
218 <target>1.8</target>
219 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200220
221 <executions>
222 <!-- Replacing default-compile as it is treated specially by maven -->
223 <execution>
224 <id>default-compile</id>
225 <phase>none</phase>
226 </execution>
227 <!-- Replacing default-testCompile as it is treated specially by maven -->
228 <execution>
229 <id>default-testCompile</id>
230 <phase>none</phase>
231 </execution>
232 <execution>
233 <id>java-compile</id>
234 <phase>compile</phase>
235 <goals> <goal>compile</goal> </goals>
236 </execution>
237 <execution>
238 <id>java-test-compile</id>
239 <phase>test-compile</phase>
240 <goals> <goal>testCompile</goal> </goals>
241 </execution>
242 </executions>
243
biniek6f2b2082018-12-17 11:18:05 +0100244 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200245
biniek6f2b2082018-12-17 11:18:05 +0100246 <plugin>
Ittay Sternd6544de2019-07-01 17:40:20 +0300247 <groupId>com.google.code.maven-replacer-plugin</groupId>
248 <artifactId>replacer</artifactId>
249 <version>1.5.3</version>
250 <executions>
251 <execution>
252 <phase>prepare-package</phase>
253 <goals>
254 <goal>replace</goal>
255 </goals>
256 </execution>
257 </executions>
258 <configuration>
259 <regex>false</regex>
260 <file>${project.basedir}/src/main/webapp/app/vid/scripts/constants/version.json</file>
261 <replacements>
262 <replacement>
263 <token>BUILD_NUMBER</token>
264 <value>${release_version}.${patch_version}.${env.BUILD_NUMBER}</value>
265 </replacement>
266 </replacements>
267 </configuration>
268 </plugin>
269
270 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100271 <groupId>org.apache.maven.plugins</groupId>
272 <artifactId>maven-surefire-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200273 <version>${surefire.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100274 <configuration>
biniek6f2b2082018-12-17 11:18:05 +0100275 <includes>
276 <include>**/Test*.java</include>
277 <include>**/*Test.java</include>
278 <include>**/*TestCase.java</include>
279 </includes>
280 <excludes>
281 <exclude>**/selenium/*.java</exclude>
282 <exclude>**/integrationTest/*.java</exclude>
283 </excludes>
284 <additionalClasspathElements>
285 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
286 </additionalClasspathElements>
287 <systemPropertyVariables>
288 <container.classpath>classpath:</container.classpath>
289 </systemPropertyVariables>
290 <useSystemClassLoader>false</useSystemClassLoader>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200291 <properties>
292 <property>
293 <!-- avoid running JUnit tests within surefire-testng provider -->
294 <name>junit</name>
295 <value>false</value>
296 </property>
297 </properties>
298 <threadCount>1</threadCount>
biniek6f2b2082018-12-17 11:18:05 +0100299 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200300 <dependencies>
301 <!-- Running TestNG and JUnit Tests -->
302 <!-- https://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html -->
303 <dependency>
304 <groupId>org.apache.maven.surefire</groupId>
305 <artifactId>surefire-junit47</artifactId>
306 <version>${surefire.version}</version>
307 </dependency>
308 <dependency>
309 <groupId>org.apache.maven.surefire</groupId>
310 <artifactId>surefire-testng</artifactId>
311 <version>${surefire.version}</version>
312 </dependency>
313 </dependencies>
biniek6f2b2082018-12-17 11:18:05 +0100314 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200315
biniek6f2b2082018-12-17 11:18:05 +0100316 <plugin>
317 <artifactId>maven-assembly-plugin</artifactId>
318 <configuration>
319 <skipAssembly>${skipassembly}</skipAssembly>
320 <descriptors>
321 <descriptor>${basedir}/distribution.xml</descriptor>
322 </descriptors>
323 </configuration>
324 <executions>
325 <execution>
326 <id>make-assembly</id>
327 <phase>package</phase>
328 <goals>
329 <goal>single</goal>
330 </goals>
331 </execution>
332 </executions>
333 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200334
335
biniek6f2b2082018-12-17 11:18:05 +0100336 <plugin>
337 <groupId>org.apache.maven.plugins</groupId>
338 <artifactId>maven-war-plugin</artifactId>
339 <version>3.0.0</version>
340 <configuration>
341 <!-- Build a jar with all the Java classes -->
342 <attachClasses>true</attachClasses>
343 <!-- Do not put any jars in the war -->
344 <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
345 </configuration>
346 </plugin>
347 <plugin>
348 <groupId>org.apache.maven.plugins</groupId>
349 <artifactId>maven-site-plugin</artifactId>
350 <version>3.6</version>
351 <dependencies>
352 <dependency>
353 <groupId>org.apache.maven.wagon</groupId>
354 <artifactId>wagon-webdav-jackrabbit</artifactId>
355 <version>2.10</version>
356 </dependency>
357 </dependencies>
358 </plugin>
359 <plugin>
360 <groupId>pl.project13.maven</groupId>
361 <artifactId>git-commit-id-plugin</artifactId>
362 <version>2.2.4</version>
363 <executions>
364 <execution>
365 <id>get-the-git-infos</id>
366 <goals>
367 <goal>revision</goal>
368 </goals>
369 </execution>
370 </executions>
371 <configuration>
372 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
373 <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
374 <dateFormatTimeZone>${user.timezone}</dateFormatTimeZone>
375 <generateGitPropertiesFile>true</generateGitPropertiesFile>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200376 <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
biniek6f2b2082018-12-17 11:18:05 +0100377 <includeOnlyProperties>
378 <includeOnlyProperty>^git.commit.id$</includeOnlyProperty>
379 <includeOnlyProperty>^git.commit.message.short$</includeOnlyProperty>
380 <includeOnlyProperty>^git.commit.time$</includeOnlyProperty>
381 </includeOnlyProperties>
382 </configuration>
383 </plugin>
Ittay Sterne0a10282019-02-27 17:32:09 +0200384
385 <plugin>
386 <!--
387 Replace phase "none" with "process-sources" to enable.
388 Set organizationName as desired.
389 Then run `mvn license:check-file-header`, or even `mvn
390 license:update-file-header`.
391 -->
392 <groupId>org.codehaus.mojo</groupId>
393 <artifactId>license-maven-plugin</artifactId>
394 <version>1.17</version>
395
396 <executions>
397 <execution>
398 <id>first</id>
399 <goals>
400 <goal>update-file-header</goal>
401 </goals>
402 <!-- replace phase "none" with "process-sources" to enable -->
403 <phase>none</phase>
404 </execution>
405 </executions>
406
407 <configuration>
408 <canUpdateCopyright>false</canUpdateCopyright>
409 <canUpdateDescription>false</canUpdateDescription>
410 <licenseName>apache_v2</licenseName>
411 <processStartTag>============LICENSE_START=======================================================</processStartTag>
412 <processEndTag>============LICENSE_END=========================================================</processEndTag>
413 <sectionDelimiter>================================================================================</sectionDelimiter>
414 <projectName>VID</projectName>
415 <inceptionYear>2017</inceptionYear>
416 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
417 <canUpdateLicense>true</canUpdateLicense>
418 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
419 <emptyLineAfterHeader>true</emptyLineAfterHeader>
420 <verbose>false</verbose>
421
422 <includes>
423 <include>**/*.java</include>
424 <include>**/*.kt</include>
425 <include>**/*.jsp</include>
426 <include>**/*.xml</include>
427 <include>**/*.js</include>
428 <include>**/*.ts</include>
429 <include>**/*.html</include>
430 <include>**/*.css</include>
431 <include>**/*.sql</include>
432 </includes>
433
434 <extraExtensions>
435 <sql>mysql</sql>
436 </extraExtensions>
437
438 <roots>
439 <root>src/main</root>
440 <root>src/test</root>
441 </roots>
442
443 <excludes>
444 <exclude>**/app/vid/external/**/*</exclude>
445 <exclude>**/main/webapp/WEB-INF/**/*</exclude>
446 <exclude>**/test/resources/WEB-INF/**/*</exclude>
447 <exclude>**/app/vid/scripts/angular-ui-tree.js</exclude>
448 </excludes>
449
450 </configuration>
451 </plugin>
452
biniek6f2b2082018-12-17 11:18:05 +0100453 </plugins>
454 </build>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200455
biniek6f2b2082018-12-17 11:18:05 +0100456 <reporting>
457 <plugins>
458 <plugin>
459 <groupId>org.apache.maven.plugins</groupId>
460 <artifactId>maven-javadoc-plugin</artifactId>
461 <version>2.10.4</version>
462 <configuration>
463 <failOnError>false</failOnError>
464 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
465 <docletArtifact>
466 <groupId>org.umlgraph</groupId>
467 <artifactId>umlgraph</artifactId>
468 <version>5.6</version>
469 </docletArtifact>
470 <additionalparam>-views</additionalparam>
471 <useStandardDocletOptions>true</useStandardDocletOptions>
472 </configuration>
473 </plugin>
474 </plugins>
475 </reporting>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200476
biniek6f2b2082018-12-17 11:18:05 +0100477 <dependencies>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200478
biniek6f2b2082018-12-17 11:18:05 +0100479 <dependency>
480 <groupId>com.opencsv</groupId>
481 <artifactId>opencsv</artifactId>
482 <version>4.1</version>
483 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200484
biniek6f2b2082018-12-17 11:18:05 +0100485 <!-- HTTP client -->
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200486
biniek6f2b2082018-12-17 11:18:05 +0100487 <dependency>
488 <groupId>io.joshworks.unirest</groupId>
489 <artifactId>unirest-java</artifactId>
490 <version>0.2.1</version>
491 </dependency>
492 <dependency>
493 <groupId>org.apache.httpcomponents</groupId>
494 <artifactId>httpclient</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100495 </dependency>
496 <dependency>
497 <groupId>org.apache.httpcomponents</groupId>
498 <artifactId>httpasyncclient</artifactId>
499 <version>4.0.2</version>
500 </dependency>
501 <dependency>
502 <groupId>org.apache.httpcomponents</groupId>
503 <artifactId>httpmime</artifactId>
Ittay Stern9f9e9b22019-02-28 12:09:45 +0200504 <version>4.5.7</version>
biniek6f2b2082018-12-17 11:18:05 +0100505 </dependency>
506 <dependency>
507 <groupId>com.xebialabs.restito</groupId>
508 <artifactId>restito</artifactId>
509 <version>0.9.3</version>
510 <scope>test</scope>
511 </dependency>
kurczewsf477d1d2019-03-20 09:52:12 +0100512 <dependency>
513 <groupId>org.jeasy</groupId>
514 <artifactId>easy-random-core</artifactId>
515 <version>4.0.0.RC1</version>
516 <scope>test</scope>
517 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200518
biniek6f2b2082018-12-17 11:18:05 +0100519 <!-- Helpers -->
520 <dependency>
521 <groupId>io.vavr</groupId>
522 <artifactId>vavr</artifactId>
523 <version>0.9.2</version>
524 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200525
biniek6f2b2082018-12-17 11:18:05 +0100526 <!-- SDK overlay war -->
527 <dependency>
528 <groupId>org.onap.portal.sdk</groupId>
529 <artifactId>epsdk-app-overlay</artifactId>
530 <version>${epsdk.version}</version>
531 <type>war</type>
532 </dependency>
533 <dependency>
534 <groupId>org.onap.portal.sdk</groupId>
535 <artifactId>epsdk-app-common</artifactId>
536 <version>${epsdk.version}</version>
537 <type>jar</type>
538 </dependency>
539
540 <dependency>
541 <groupId>org.onap.portal.sdk</groupId>
542 <artifactId>epsdk-core</artifactId>
543 <version>${epsdk.version}</version>
544 </dependency>
545 <dependency>
546 <groupId>org.onap.portal.sdk</groupId>
547 <artifactId>epsdk-analytics</artifactId>
548 <version>${epsdk.version}</version>
549 <exclusions>
550 <exclusion>
551 <groupId>com.lowagie</groupId>
552 <artifactId>itext</artifactId>
553 </exclusion>
554 </exclusions>
555 </dependency>
556 <dependency>
557 <groupId>org.onap.portal.sdk</groupId>
558 <artifactId>epsdk-workflow</artifactId>
559 <version>${epsdk.version}</version>
560 </dependency>
561 <dependency>
562 <groupId>com.att.eelf</groupId>
563 <artifactId>eelf-core</artifactId>
564 <version>1.0.0</version>
565 <exclusions>
566 <exclusion>
567 <artifactId>powermock-api-mockito</artifactId>
568 <groupId>org.powermock</groupId>
569 </exclusion>
570 </exclusions>
571 </dependency>
572 <dependency>
573 <groupId>ch.qos.logback</groupId>
biniek6f2b2082018-12-17 11:18:05 +0100574 <artifactId>logback-classic</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100575 </dependency>
576
Ittay Stern6ad41e32018-12-31 17:21:27 +0200577 <dependency>
578 <groupId>org.jetbrains.kotlin</groupId>
579 <artifactId>kotlin-stdlib-jdk8</artifactId>
580 <version>${kotlin.version}</version>
581 </dependency>
582
biniek6f2b2082018-12-17 11:18:05 +0100583 <!-- Mapper -->
584 <dependency>
585 <groupId>com.fasterxml.jackson.core</groupId>
586 <artifactId>jackson-annotations</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200587 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100588 </dependency>
589 <dependency>
590 <groupId>com.fasterxml.jackson.core</groupId>
591 <artifactId>jackson-core</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200592 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100593 </dependency>
594 <dependency>
595 <groupId>com.fasterxml.jackson.core</groupId>
596 <artifactId>jackson-databind</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200597 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100598 </dependency>
599 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200600 <groupId>com.fasterxml.jackson.module</groupId>
601 <artifactId>jackson-module-kotlin</artifactId>
602 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100603 </dependency>
Ittay Stern2687d312019-02-21 17:26:33 +0200604 <!-- c3p0 is to override epsdk-app-common's c3p0 0.9.5.2 vulnerability -->
biniek6f2b2082018-12-17 11:18:05 +0100605 <dependency>
606 <groupId>com.mchange</groupId>
607 <artifactId>c3p0</artifactId>
golabek22b96132019-04-23 11:11:12 +0200608 <version>0.9.5.4</version>
biniek6f2b2082018-12-17 11:18:05 +0100609 </dependency>
610 <dependency>
611 <groupId>io.searchbox</groupId>
612 <artifactId>jest</artifactId>
613 <version>2.0.0</version>
614 <exclusions>
615 <exclusion>
616 <groupId>commons-logging</groupId>
617 <artifactId>commons-logging</artifactId>
618 </exclusion>
619 </exclusions>
620 </dependency>
621 <dependency>
622 <groupId>javax.servlet</groupId>
623 <artifactId>javax.servlet-api</artifactId>
624 <version>3.1.0</version>
625 <scope>provided</scope>
626 </dependency>
627 <dependency>
628 <groupId>junit</groupId>
629 <artifactId>junit</artifactId>
630 <version>4.12</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200631 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100632 </dependency>
633 <dependency>
634 <groupId>commons-io</groupId>
635 <artifactId>commons-io</artifactId>
636 <version>2.4</version>
637 <!--<scope>test</scope>-->
638 </dependency>
639 <dependency>
640 <groupId>com.google.code.bean-matchers</groupId>
641 <artifactId>bean-matchers</artifactId>
642 <version>0.11</version>
643 <scope>test</scope>
644 </dependency>
645 <dependency>
646 <groupId>org.json</groupId>
647 <artifactId>json</artifactId>
648 <version>20160212</version>
649 </dependency>
650 <dependency>
651 <groupId>org.quartz-scheduler</groupId>
652 <artifactId>quartz</artifactId>
653 <version>2.2.1</version>
654 <exclusions>
655 <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 -->
656 <exclusion>
657 <groupId>c3p0</groupId>
658 <artifactId>c3p0</artifactId>
659 </exclusion>
660 </exclusions>
661 </dependency>
662 <!-- bridge to implement commons-logging using slf4j -->
663 <dependency>
664 <groupId>org.slf4j</groupId>
665 <artifactId>jcl-over-slf4j</artifactId>
666 <version>1.7.12</version>
667 </dependency>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200668
669 <!-- springframework to override epsdk-app-common's and epsdk-core's versions -->
biniek6f2b2082018-12-17 11:18:05 +0100670 <dependency>
671 <groupId>org.springframework</groupId>
672 <artifactId>spring-core</artifactId>
673 <version>${springframework.version}</version>
674 <exclusions>
675 <exclusion>
676 <groupId>commons-logging</groupId>
677 <artifactId>commons-logging</artifactId>
678 </exclusion>
679 </exclusions>
680 </dependency>
681 <dependency>
682 <groupId>org.springframework</groupId>
683 <artifactId>spring-test</artifactId>
684 <version>${springframework.version}</version>
685 </dependency>
686 <dependency>
687 <groupId>org.springframework</groupId>
688 <artifactId>spring-tx</artifactId>
689 <version>${springframework.version}</version>
690 </dependency>
691 <dependency>
692 <groupId>org.springframework</groupId>
693 <artifactId>spring-web</artifactId>
694 <version>${springframework.version}</version>
695 </dependency>
696 <dependency>
697 <groupId>org.springframework</groupId>
698 <artifactId>spring-webmvc</artifactId>
699 <version>${springframework.version}</version>
700 </dependency>
701 <dependency>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200702 <groupId>org.springframework</groupId>
703 <artifactId>spring-context-support</artifactId>
704 <version>${springframework.version}</version>
705 </dependency>
706 <dependency>
707 <groupId>org.springframework</groupId>
708 <artifactId>spring-orm</artifactId>
709 <version>${springframework.version}</version>
710 </dependency>
711 <dependency>
712 <groupId>org.springframework</groupId>
713 <artifactId>spring-aop</artifactId>
714 <version>${springframework.version}</version>
715 </dependency>
716
717 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100718 <groupId>org.glassfish.jersey.core</groupId>
719 <artifactId>jersey-client</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200720 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100721 </dependency>
722 <dependency>
723 <groupId>org.glassfish.jersey.connectors</groupId>
724 <artifactId>jersey-jetty-connector</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200725 <version>${jersey.version}</version>
726 </dependency>
727 <!--https://stackoverflow.com/questions/44088493/jersey-stopped-working-with-injectionmanagerfactory-not-found-->
728 <dependency>
729 <groupId>org.glassfish.jersey.inject</groupId>
730 <artifactId>jersey-hk2</artifactId>
731 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100732 </dependency>
733 <dependency>
734 <groupId>com.fasterxml.jackson.jaxrs</groupId>
735 <artifactId>jackson-jaxrs-json-provider</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200736 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100737 </dependency>
738 <dependency>
739 <groupId>commons-beanutils</groupId>
740 <artifactId>commons-beanutils</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100741 </dependency>
742 <dependency>
743 <groupId>com.googlecode.json-simple</groupId>
744 <artifactId>json-simple</artifactId>
745 <version>1.1.1</version>
746 </dependency>
747 <dependency>
748 <groupId>org.seleniumhq.selenium</groupId>
749 <artifactId>selenium-java</artifactId>
750 <version>2.53.1</version>
751 <scope>test</scope>
752 </dependency>
753 <dependency>
754 <groupId>org.seleniumhq.selenium</groupId>
755 <artifactId>selenium-api</artifactId>
756 <version>2.53.1</version>
757 <scope>test</scope>
758 </dependency>
759 <dependency>
760 <groupId>org.testng</groupId>
761 <artifactId>testng</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200762 <version>6.14.3</version>
biniek6f2b2082018-12-17 11:18:05 +0100763 <scope>test</scope>
764 </dependency>
765 <dependency>
766 <groupId>org.mockito</groupId>
767 <artifactId>mockito-core</artifactId>
768 <version>2.23.0</version>
769 <scope>test</scope>
770 </dependency>
771 <dependency>
772 <groupId>org.seleniumhq.selenium</groupId>
773 <artifactId>selenium-firefox-driver</artifactId>
774 <version>2.53.1</version>
775 </dependency>
776 <dependency>
777 <groupId>xml-apis</groupId>
778 <artifactId>xml-apis</artifactId>
779 <version>1.4.01</version>
780 </dependency>
781 <dependency>
782 <groupId>org.yaml</groupId>
783 <artifactId>snakeyaml</artifactId>
784 <version>1.16</version>
785 </dependency>
786 <dependency>
787 <groupId>org.skyscreamer</groupId>
788 <artifactId>jsonassert</artifactId>
789 <version>1.5.0</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200790 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100791 </dependency>
792 <dependency>
793 <groupId>org.onap.sdc.sdc-tosca</groupId>
794 <artifactId>sdc-tosca</artifactId>
Ittay Stern2bc8ebd2019-05-21 19:38:54 +0300795 <version>1.5.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100796 <scope>compile</scope>
797 </dependency>
798 <dependency>
799 <groupId>net.javacrumbs.json-unit</groupId>
800 <artifactId>json-unit</artifactId>
801 <version>1.23.0</version>
802 <scope>test</scope>
803 </dependency>
804 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200805 <groupId>org.glassfish.jersey.media</groupId>
806 <artifactId>jersey-media-json-jackson</artifactId>
807 <version>${jersey.version}</version>
808 <scope>test</scope>
809 </dependency>
810 <dependency>
811 <groupId>org.apache.commons</groupId>
812 <artifactId>commons-lang3</artifactId>
813 <version>3.6</version>
814 </dependency>
815 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100816 <groupId>org.apache.commons</groupId>
817 <artifactId>commons-text</artifactId>
818 <version>1.1</version>
819 </dependency>
820 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200821 <groupId>org.apache.commons</groupId>
822 <artifactId>commons-proxy</artifactId>
823 <version>1.0</version>
824 </dependency>
825 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100826 <groupId>org.hamcrest</groupId>
827 <artifactId>java-hamcrest</artifactId>
828 <version>2.0.0.0</version>
829 <scope>test</scope>
830 </dependency>
831 <dependency>
832 <groupId>org.togglz</groupId>
833 <artifactId>togglz-spring-core</artifactId>
834 <version>2.5.0.Final</version>
835 </dependency>
836 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200837 <groupId>com.h2database</groupId>
838 <artifactId>h2</artifactId>
839 <version>1.4.196</version>
840 <scope>test</scope>
841 </dependency>
842 <dependency>
843 <groupId>javax.xml.bind</groupId>
844 <artifactId>jaxb-api</artifactId>
845 <version>2.2.11</version>
846 </dependency>
847
848 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100849 <groupId>org.assertj</groupId>
850 <artifactId>assertj-core</artifactId>
851 <version>3.10.0</version>
kurczewsb1d73932019-05-17 09:10:27 +0200852 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100853 </dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200854 <dependency>
855 <groupId>com.google.guava</groupId>
856 <artifactId>guava</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200857 </dependency>
Wojciech Sliwka86683c52019-04-09 14:57:02 +0200858 <dependency>
859 <groupId>io.springfox</groupId>
860 <artifactId>springfox-swagger2</artifactId>
861 <version>2.9.2</version>
862 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200863 </dependencies>
864</project>