blob: 49398884eed40376684efe29c7c3588df85fa46d [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>
12 <version>4.0.0-SNAPSHOT</version>
13 <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 Wagantall44505672019-05-10 15:01:20 -070020 <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>
39 <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>
49 <node.version>v6.16.0</node.version>
50
biniek6f2b2082018-12-17 11:18:05 +010051 </properties>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020052
53
biniek6f2b2082018-12-17 11:18:05 +010054 <!-- this should be commented for local debugging -->
55 <!-- <deployenv>local</deployenv> -->
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020056
biniek6f2b2082018-12-17 11:18:05 +010057 <repositories>
58 <repository>
59 <id>ecomp-releases</id>
60 <name>VID Release Repository</name>
61 <url>${nexusproxy}${releaseNexusPath}</url>
62 </repository>
63 <repository>
64 <id>ecomp-snapshots</id>
65 <name>VID Snapshot Repository</name>
66 <url>${nexusproxy}${snapshotNexusPath}</url>
67 </repository>
68 <repository>
69 <id>ecomp-staging</id>
70 <name>VID Staging Repository</name>
71 <url>${nexusproxy}${stagingNexusPath}</url>
72 </repository>
73 <repository>
74 <!-- Snapshots repository has ECOMP snapshot artifacts -->
75 <id>oss-snapshots</id>
76 <name>oss Central - Snapshots</name>
77 <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url>
78 </repository>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020079
biniek6f2b2082018-12-17 11:18:05 +010080 </repositories>
81 <distributionManagement>
82 <repository>
83 <id>ecomp-releases</id>
84 <name>VID Release Repository</name>
85 <url>${nexusproxy}/${releaseNexusPath}</url>
86 </repository>
87 <snapshotRepository>
88 <id>ecomp-snapshots</id>
89 <name>VID Snapshot Repository</name>
90 <url>${nexusproxy}/${snapshotNexusPath}</url>
91 </snapshotRepository>
92 <!-- added for javadoc -->
93 <site>
94 <id>ecomp-site</id>
95 <url>dav:${nexusproxy}${sitePath}</url>
96 </site>
97 </distributionManagement>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +020098
biniek6f2b2082018-12-17 11:18:05 +010099 <build>
100 <finalName>vid-common</finalName>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200101
biniek6f2b2082018-12-17 11:18:05 +0100102 <plugins>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200103
104 <plugin>
105 <artifactId>kotlin-maven-plugin</artifactId>
106 <groupId>org.jetbrains.kotlin</groupId>
107 <version>${kotlin.version}</version>
108 <executions>
109 <execution>
110 <id>compile</id>
111 <goals> <goal>compile</goal> </goals>
112 <configuration>
113 <sourceDirs>
114 <sourceDir>${project.basedir}/src/main/java</sourceDir>
115 </sourceDirs>
116 </configuration>
117 </execution>
118 <execution>
119 <id>test-compile</id>
120 <goals> <goal>test-compile</goal> </goals>
121 <configuration>
122 <sourceDirs>
123 <sourceDir>${project.basedir}/src/test/java</sourceDir>
124 </sourceDirs>
125 </configuration>
126 </execution>
127 </executions>
128 </plugin>
biniek6f2b2082018-12-17 11:18:05 +0100129 <plugin>
130 <groupId>org.jacoco</groupId>
131 <artifactId>jacoco-maven-plugin</artifactId>
Ittay Stern67a23ab2019-02-25 19:21:32 +0200132 <version>0.8.3</version>
biniek6f2b2082018-12-17 11:18:05 +0100133 <executions>
134 <execution>
135 <id>default-prepare-agent</id>
136 <goals>
137 <goal>prepare-agent</goal>
138 </goals>
139 </execution>
140 <execution>
141 <id>default-report</id>
142 <goals>
143 <goal>report</goal>
144 </goals>
145 </execution>
146 </executions>
147 </plugin>
148 <plugin>
149 <groupId>org.apache.tomcat.maven</groupId>
150 <artifactId>tomcat6-maven-plugin</artifactId>
151 <version>2.2</version>
152 </plugin>
153 <plugin>
154 <groupId>org.apache.tomcat.maven</groupId>
155 <artifactId>tomcat7-maven-plugin</artifactId>
156 <version>2.2</version>
157 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200158
biniek6f2b2082018-12-17 11:18:05 +0100159 <plugin>
golabekec4f9542019-01-28 09:34:48 +0100160 <groupId>com.github.eirslett</groupId>
161 <artifactId>frontend-maven-plugin</artifactId>
162 <version>${eirslett.version}</version>
163 <executions>
164 <execution>
165 <id>install node and npm</id>
166 <goals>
167 <goal>install-node-and-npm</goal>
168 </goals>
169 <phase>generate-resources</phase>
170 <configuration>
171 <nodeVersion>${node.version}</nodeVersion>
172 </configuration>
173 </execution>
174 <execution>
Ittay Stern779c51d2019-05-16 15:47:08 +0300175 <id>npm install</id>
176 <configuration>
177 <arguments>install</arguments>
178 </configuration>
179 <goals>
180 <goal>npm</goal>
181 </goals>
182 <phase>generate-resources</phase>
183 </execution>
184 <execution>
golabekec4f9542019-01-28 09:34:48 +0100185 <id>npm run-script build</id>
186 <configuration>
187 <arguments>run-script build</arguments>
188 </configuration>
189 <goals>
190 <goal>npm</goal>
191 </goals>
192 <phase>generate-resources</phase>
193 </execution>
194 </executions>
195 </plugin>
196
197 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100198 <groupId>org.apache.maven.plugins</groupId>
199 <artifactId>maven-compiler-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200200 <version>3.5.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100201 <configuration>
202 <source>1.8</source>
203 <target>1.8</target>
204 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200205
206 <executions>
207 <!-- Replacing default-compile as it is treated specially by maven -->
208 <execution>
209 <id>default-compile</id>
210 <phase>none</phase>
211 </execution>
212 <!-- Replacing default-testCompile as it is treated specially by maven -->
213 <execution>
214 <id>default-testCompile</id>
215 <phase>none</phase>
216 </execution>
217 <execution>
218 <id>java-compile</id>
219 <phase>compile</phase>
220 <goals> <goal>compile</goal> </goals>
221 </execution>
222 <execution>
223 <id>java-test-compile</id>
224 <phase>test-compile</phase>
225 <goals> <goal>testCompile</goal> </goals>
226 </execution>
227 </executions>
228
biniek6f2b2082018-12-17 11:18:05 +0100229 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200230
biniek6f2b2082018-12-17 11:18:05 +0100231 <plugin>
232 <groupId>org.apache.maven.plugins</groupId>
233 <artifactId>maven-surefire-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200234 <version>${surefire.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100235 <configuration>
biniek6f2b2082018-12-17 11:18:05 +0100236 <includes>
237 <include>**/Test*.java</include>
238 <include>**/*Test.java</include>
239 <include>**/*TestCase.java</include>
240 </includes>
241 <excludes>
242 <exclude>**/selenium/*.java</exclude>
243 <exclude>**/integrationTest/*.java</exclude>
244 </excludes>
245 <additionalClasspathElements>
246 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
247 </additionalClasspathElements>
248 <systemPropertyVariables>
249 <container.classpath>classpath:</container.classpath>
250 </systemPropertyVariables>
251 <useSystemClassLoader>false</useSystemClassLoader>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200252 <properties>
253 <property>
254 <!-- avoid running JUnit tests within surefire-testng provider -->
255 <name>junit</name>
256 <value>false</value>
257 </property>
258 </properties>
259 <threadCount>1</threadCount>
biniek6f2b2082018-12-17 11:18:05 +0100260 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200261 <dependencies>
262 <!-- Running TestNG and JUnit Tests -->
263 <!-- https://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html -->
264 <dependency>
265 <groupId>org.apache.maven.surefire</groupId>
266 <artifactId>surefire-junit47</artifactId>
267 <version>${surefire.version}</version>
268 </dependency>
269 <dependency>
270 <groupId>org.apache.maven.surefire</groupId>
271 <artifactId>surefire-testng</artifactId>
272 <version>${surefire.version}</version>
273 </dependency>
274 </dependencies>
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>
278 <artifactId>maven-assembly-plugin</artifactId>
279 <configuration>
280 <skipAssembly>${skipassembly}</skipAssembly>
281 <descriptors>
282 <descriptor>${basedir}/distribution.xml</descriptor>
283 </descriptors>
284 </configuration>
285 <executions>
286 <execution>
287 <id>make-assembly</id>
288 <phase>package</phase>
289 <goals>
290 <goal>single</goal>
291 </goals>
292 </execution>
293 </executions>
294 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200295
296
biniek6f2b2082018-12-17 11:18:05 +0100297 <plugin>
298 <groupId>org.apache.maven.plugins</groupId>
299 <artifactId>maven-war-plugin</artifactId>
300 <version>3.0.0</version>
301 <configuration>
302 <!-- Build a jar with all the Java classes -->
303 <attachClasses>true</attachClasses>
304 <!-- Do not put any jars in the war -->
305 <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
306 </configuration>
307 </plugin>
308 <plugin>
309 <groupId>org.apache.maven.plugins</groupId>
310 <artifactId>maven-site-plugin</artifactId>
311 <version>3.6</version>
312 <dependencies>
313 <dependency>
314 <groupId>org.apache.maven.wagon</groupId>
315 <artifactId>wagon-webdav-jackrabbit</artifactId>
316 <version>2.10</version>
317 </dependency>
318 </dependencies>
319 </plugin>
320 <plugin>
321 <groupId>pl.project13.maven</groupId>
322 <artifactId>git-commit-id-plugin</artifactId>
323 <version>2.2.4</version>
324 <executions>
325 <execution>
326 <id>get-the-git-infos</id>
327 <goals>
328 <goal>revision</goal>
329 </goals>
330 </execution>
331 </executions>
332 <configuration>
333 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
334 <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
335 <dateFormatTimeZone>${user.timezone}</dateFormatTimeZone>
336 <generateGitPropertiesFile>true</generateGitPropertiesFile>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200337 <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
biniek6f2b2082018-12-17 11:18:05 +0100338 <includeOnlyProperties>
339 <includeOnlyProperty>^git.commit.id$</includeOnlyProperty>
340 <includeOnlyProperty>^git.commit.message.short$</includeOnlyProperty>
341 <includeOnlyProperty>^git.commit.time$</includeOnlyProperty>
342 </includeOnlyProperties>
343 </configuration>
344 </plugin>
Ittay Sterne0a10282019-02-27 17:32:09 +0200345
346 <plugin>
347 <!--
348 Replace phase "none" with "process-sources" to enable.
349 Set organizationName as desired.
350 Then run `mvn license:check-file-header`, or even `mvn
351 license:update-file-header`.
352 -->
353 <groupId>org.codehaus.mojo</groupId>
354 <artifactId>license-maven-plugin</artifactId>
355 <version>1.17</version>
356
357 <executions>
358 <execution>
359 <id>first</id>
360 <goals>
361 <goal>update-file-header</goal>
362 </goals>
363 <!-- replace phase "none" with "process-sources" to enable -->
364 <phase>none</phase>
365 </execution>
366 </executions>
367
368 <configuration>
369 <canUpdateCopyright>false</canUpdateCopyright>
370 <canUpdateDescription>false</canUpdateDescription>
371 <licenseName>apache_v2</licenseName>
372 <processStartTag>============LICENSE_START=======================================================</processStartTag>
373 <processEndTag>============LICENSE_END=========================================================</processEndTag>
374 <sectionDelimiter>================================================================================</sectionDelimiter>
375 <projectName>VID</projectName>
376 <inceptionYear>2017</inceptionYear>
377 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
378 <canUpdateLicense>true</canUpdateLicense>
379 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
380 <emptyLineAfterHeader>true</emptyLineAfterHeader>
381 <verbose>false</verbose>
382
383 <includes>
384 <include>**/*.java</include>
385 <include>**/*.kt</include>
386 <include>**/*.jsp</include>
387 <include>**/*.xml</include>
388 <include>**/*.js</include>
389 <include>**/*.ts</include>
390 <include>**/*.html</include>
391 <include>**/*.css</include>
392 <include>**/*.sql</include>
393 </includes>
394
395 <extraExtensions>
396 <sql>mysql</sql>
397 </extraExtensions>
398
399 <roots>
400 <root>src/main</root>
401 <root>src/test</root>
402 </roots>
403
404 <excludes>
405 <exclude>**/app/vid/external/**/*</exclude>
406 <exclude>**/main/webapp/WEB-INF/**/*</exclude>
407 <exclude>**/test/resources/WEB-INF/**/*</exclude>
408 <exclude>**/app/vid/scripts/angular-ui-tree.js</exclude>
409 </excludes>
410
411 </configuration>
412 </plugin>
413
biniek6f2b2082018-12-17 11:18:05 +0100414 </plugins>
415 </build>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200416
biniek6f2b2082018-12-17 11:18:05 +0100417 <reporting>
418 <plugins>
419 <plugin>
420 <groupId>org.apache.maven.plugins</groupId>
421 <artifactId>maven-javadoc-plugin</artifactId>
422 <version>2.10.4</version>
423 <configuration>
424 <failOnError>false</failOnError>
425 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
426 <docletArtifact>
427 <groupId>org.umlgraph</groupId>
428 <artifactId>umlgraph</artifactId>
429 <version>5.6</version>
430 </docletArtifact>
431 <additionalparam>-views</additionalparam>
432 <useStandardDocletOptions>true</useStandardDocletOptions>
433 </configuration>
434 </plugin>
435 </plugins>
436 </reporting>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200437
biniek6f2b2082018-12-17 11:18:05 +0100438 <dependencies>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200439
biniek6f2b2082018-12-17 11:18:05 +0100440 <dependency>
441 <groupId>com.opencsv</groupId>
442 <artifactId>opencsv</artifactId>
443 <version>4.1</version>
444 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200445
biniek6f2b2082018-12-17 11:18:05 +0100446 <!-- HTTP client -->
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200447
biniek6f2b2082018-12-17 11:18:05 +0100448 <dependency>
449 <groupId>io.joshworks.unirest</groupId>
450 <artifactId>unirest-java</artifactId>
451 <version>0.2.1</version>
452 </dependency>
453 <dependency>
454 <groupId>org.apache.httpcomponents</groupId>
455 <artifactId>httpclient</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100456 </dependency>
457 <dependency>
458 <groupId>org.apache.httpcomponents</groupId>
459 <artifactId>httpasyncclient</artifactId>
460 <version>4.0.2</version>
461 </dependency>
462 <dependency>
463 <groupId>org.apache.httpcomponents</groupId>
464 <artifactId>httpmime</artifactId>
Ittay Stern9f9e9b22019-02-28 12:09:45 +0200465 <version>4.5.7</version>
biniek6f2b2082018-12-17 11:18:05 +0100466 </dependency>
467 <dependency>
468 <groupId>com.xebialabs.restito</groupId>
469 <artifactId>restito</artifactId>
470 <version>0.9.3</version>
471 <scope>test</scope>
472 </dependency>
kurczewsf477d1d2019-03-20 09:52:12 +0100473 <dependency>
474 <groupId>org.jeasy</groupId>
475 <artifactId>easy-random-core</artifactId>
476 <version>4.0.0.RC1</version>
477 <scope>test</scope>
478 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200479
biniek6f2b2082018-12-17 11:18:05 +0100480 <!-- Helpers -->
481 <dependency>
482 <groupId>io.vavr</groupId>
483 <artifactId>vavr</artifactId>
484 <version>0.9.2</version>
485 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200486
biniek6f2b2082018-12-17 11:18:05 +0100487 <!-- SDK overlay war -->
488 <dependency>
489 <groupId>org.onap.portal.sdk</groupId>
490 <artifactId>epsdk-app-overlay</artifactId>
491 <version>${epsdk.version}</version>
492 <type>war</type>
493 </dependency>
494 <dependency>
495 <groupId>org.onap.portal.sdk</groupId>
496 <artifactId>epsdk-app-common</artifactId>
497 <version>${epsdk.version}</version>
498 <type>jar</type>
499 </dependency>
500
501 <dependency>
502 <groupId>org.onap.portal.sdk</groupId>
503 <artifactId>epsdk-core</artifactId>
504 <version>${epsdk.version}</version>
505 </dependency>
506 <dependency>
507 <groupId>org.onap.portal.sdk</groupId>
508 <artifactId>epsdk-analytics</artifactId>
509 <version>${epsdk.version}</version>
510 <exclusions>
511 <exclusion>
512 <groupId>com.lowagie</groupId>
513 <artifactId>itext</artifactId>
514 </exclusion>
515 </exclusions>
516 </dependency>
517 <dependency>
518 <groupId>org.onap.portal.sdk</groupId>
519 <artifactId>epsdk-workflow</artifactId>
520 <version>${epsdk.version}</version>
521 </dependency>
522 <dependency>
523 <groupId>com.att.eelf</groupId>
524 <artifactId>eelf-core</artifactId>
525 <version>1.0.0</version>
526 <exclusions>
527 <exclusion>
528 <artifactId>powermock-api-mockito</artifactId>
529 <groupId>org.powermock</groupId>
530 </exclusion>
531 </exclusions>
532 </dependency>
533 <dependency>
534 <groupId>ch.qos.logback</groupId>
biniek6f2b2082018-12-17 11:18:05 +0100535 <artifactId>logback-classic</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100536 </dependency>
537
Ittay Stern6ad41e32018-12-31 17:21:27 +0200538 <dependency>
539 <groupId>org.jetbrains.kotlin</groupId>
540 <artifactId>kotlin-stdlib-jdk8</artifactId>
541 <version>${kotlin.version}</version>
542 </dependency>
543
biniek6f2b2082018-12-17 11:18:05 +0100544 <!-- Mapper -->
545 <dependency>
546 <groupId>com.fasterxml.jackson.core</groupId>
547 <artifactId>jackson-annotations</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200548 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100549 </dependency>
550 <dependency>
551 <groupId>com.fasterxml.jackson.core</groupId>
552 <artifactId>jackson-core</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200553 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100554 </dependency>
555 <dependency>
556 <groupId>com.fasterxml.jackson.core</groupId>
557 <artifactId>jackson-databind</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200558 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100559 </dependency>
560 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200561 <groupId>com.fasterxml.jackson.module</groupId>
562 <artifactId>jackson-module-kotlin</artifactId>
563 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100564 </dependency>
Ittay Stern2687d312019-02-21 17:26:33 +0200565 <!-- c3p0 is to override epsdk-app-common's c3p0 0.9.5.2 vulnerability -->
biniek6f2b2082018-12-17 11:18:05 +0100566 <dependency>
567 <groupId>com.mchange</groupId>
568 <artifactId>c3p0</artifactId>
golabek22b96132019-04-23 11:11:12 +0200569 <version>0.9.5.4</version>
biniek6f2b2082018-12-17 11:18:05 +0100570 </dependency>
571 <dependency>
572 <groupId>io.searchbox</groupId>
573 <artifactId>jest</artifactId>
574 <version>2.0.0</version>
575 <exclusions>
576 <exclusion>
577 <groupId>commons-logging</groupId>
578 <artifactId>commons-logging</artifactId>
579 </exclusion>
580 </exclusions>
581 </dependency>
582 <dependency>
583 <groupId>javax.servlet</groupId>
584 <artifactId>javax.servlet-api</artifactId>
585 <version>3.1.0</version>
586 <scope>provided</scope>
587 </dependency>
588 <dependency>
589 <groupId>junit</groupId>
590 <artifactId>junit</artifactId>
591 <version>4.12</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200592 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100593 </dependency>
594 <dependency>
595 <groupId>commons-io</groupId>
596 <artifactId>commons-io</artifactId>
597 <version>2.4</version>
598 <!--<scope>test</scope>-->
599 </dependency>
600 <dependency>
601 <groupId>com.google.code.bean-matchers</groupId>
602 <artifactId>bean-matchers</artifactId>
603 <version>0.11</version>
604 <scope>test</scope>
605 </dependency>
606 <dependency>
607 <groupId>org.json</groupId>
608 <artifactId>json</artifactId>
609 <version>20160212</version>
610 </dependency>
611 <dependency>
612 <groupId>org.quartz-scheduler</groupId>
613 <artifactId>quartz</artifactId>
614 <version>2.2.1</version>
615 <exclusions>
616 <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 -->
617 <exclusion>
618 <groupId>c3p0</groupId>
619 <artifactId>c3p0</artifactId>
620 </exclusion>
621 </exclusions>
622 </dependency>
623 <!-- bridge to implement commons-logging using slf4j -->
624 <dependency>
625 <groupId>org.slf4j</groupId>
626 <artifactId>jcl-over-slf4j</artifactId>
627 <version>1.7.12</version>
628 </dependency>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200629
630 <!-- springframework to override epsdk-app-common's and epsdk-core's versions -->
biniek6f2b2082018-12-17 11:18:05 +0100631 <dependency>
632 <groupId>org.springframework</groupId>
633 <artifactId>spring-core</artifactId>
634 <version>${springframework.version}</version>
635 <exclusions>
636 <exclusion>
637 <groupId>commons-logging</groupId>
638 <artifactId>commons-logging</artifactId>
639 </exclusion>
640 </exclusions>
641 </dependency>
642 <dependency>
643 <groupId>org.springframework</groupId>
644 <artifactId>spring-test</artifactId>
645 <version>${springframework.version}</version>
646 </dependency>
647 <dependency>
648 <groupId>org.springframework</groupId>
649 <artifactId>spring-tx</artifactId>
650 <version>${springframework.version}</version>
651 </dependency>
652 <dependency>
653 <groupId>org.springframework</groupId>
654 <artifactId>spring-web</artifactId>
655 <version>${springframework.version}</version>
656 </dependency>
657 <dependency>
658 <groupId>org.springframework</groupId>
659 <artifactId>spring-webmvc</artifactId>
660 <version>${springframework.version}</version>
661 </dependency>
662 <dependency>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200663 <groupId>org.springframework</groupId>
664 <artifactId>spring-context-support</artifactId>
665 <version>${springframework.version}</version>
666 </dependency>
667 <dependency>
668 <groupId>org.springframework</groupId>
669 <artifactId>spring-orm</artifactId>
670 <version>${springframework.version}</version>
671 </dependency>
672 <dependency>
673 <groupId>org.springframework</groupId>
674 <artifactId>spring-aop</artifactId>
675 <version>${springframework.version}</version>
676 </dependency>
677
678 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100679 <groupId>org.glassfish.jersey.core</groupId>
680 <artifactId>jersey-client</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200681 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100682 </dependency>
683 <dependency>
684 <groupId>org.glassfish.jersey.connectors</groupId>
685 <artifactId>jersey-jetty-connector</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200686 <version>${jersey.version}</version>
687 </dependency>
688 <!--https://stackoverflow.com/questions/44088493/jersey-stopped-working-with-injectionmanagerfactory-not-found-->
689 <dependency>
690 <groupId>org.glassfish.jersey.inject</groupId>
691 <artifactId>jersey-hk2</artifactId>
692 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100693 </dependency>
694 <dependency>
695 <groupId>com.fasterxml.jackson.jaxrs</groupId>
696 <artifactId>jackson-jaxrs-json-provider</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200697 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100698 </dependency>
699 <dependency>
700 <groupId>commons-beanutils</groupId>
701 <artifactId>commons-beanutils</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100702 </dependency>
703 <dependency>
704 <groupId>com.googlecode.json-simple</groupId>
705 <artifactId>json-simple</artifactId>
706 <version>1.1.1</version>
707 </dependency>
708 <dependency>
709 <groupId>org.seleniumhq.selenium</groupId>
710 <artifactId>selenium-java</artifactId>
711 <version>2.53.1</version>
712 <scope>test</scope>
713 </dependency>
714 <dependency>
715 <groupId>org.seleniumhq.selenium</groupId>
716 <artifactId>selenium-api</artifactId>
717 <version>2.53.1</version>
718 <scope>test</scope>
719 </dependency>
720 <dependency>
721 <groupId>org.testng</groupId>
722 <artifactId>testng</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200723 <version>6.14.3</version>
biniek6f2b2082018-12-17 11:18:05 +0100724 <scope>test</scope>
725 </dependency>
726 <dependency>
727 <groupId>org.mockito</groupId>
728 <artifactId>mockito-core</artifactId>
729 <version>2.23.0</version>
730 <scope>test</scope>
731 </dependency>
732 <dependency>
733 <groupId>org.seleniumhq.selenium</groupId>
734 <artifactId>selenium-firefox-driver</artifactId>
735 <version>2.53.1</version>
736 </dependency>
737 <dependency>
738 <groupId>xml-apis</groupId>
739 <artifactId>xml-apis</artifactId>
740 <version>1.4.01</version>
741 </dependency>
742 <dependency>
743 <groupId>org.yaml</groupId>
744 <artifactId>snakeyaml</artifactId>
745 <version>1.16</version>
746 </dependency>
747 <dependency>
748 <groupId>org.skyscreamer</groupId>
749 <artifactId>jsonassert</artifactId>
750 <version>1.5.0</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200751 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100752 </dependency>
753 <dependency>
754 <groupId>org.onap.sdc.sdc-tosca</groupId>
755 <artifactId>sdc-tosca</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200756 <version>1.4.7</version>
biniek6f2b2082018-12-17 11:18:05 +0100757 <scope>compile</scope>
758 </dependency>
759 <dependency>
760 <groupId>net.javacrumbs.json-unit</groupId>
761 <artifactId>json-unit</artifactId>
762 <version>1.23.0</version>
763 <scope>test</scope>
764 </dependency>
765 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200766 <groupId>org.glassfish.jersey.media</groupId>
767 <artifactId>jersey-media-json-jackson</artifactId>
768 <version>${jersey.version}</version>
769 <scope>test</scope>
770 </dependency>
771 <dependency>
772 <groupId>org.apache.commons</groupId>
773 <artifactId>commons-lang3</artifactId>
774 <version>3.6</version>
775 </dependency>
776 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100777 <groupId>org.apache.commons</groupId>
778 <artifactId>commons-text</artifactId>
779 <version>1.1</version>
780 </dependency>
781 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200782 <groupId>org.apache.commons</groupId>
783 <artifactId>commons-proxy</artifactId>
784 <version>1.0</version>
785 </dependency>
786 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100787 <groupId>org.hamcrest</groupId>
788 <artifactId>java-hamcrest</artifactId>
789 <version>2.0.0.0</version>
790 <scope>test</scope>
791 </dependency>
792 <dependency>
793 <groupId>org.togglz</groupId>
794 <artifactId>togglz-spring-core</artifactId>
795 <version>2.5.0.Final</version>
796 </dependency>
797 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200798 <groupId>com.h2database</groupId>
799 <artifactId>h2</artifactId>
800 <version>1.4.196</version>
801 <scope>test</scope>
802 </dependency>
803 <dependency>
804 <groupId>javax.xml.bind</groupId>
805 <artifactId>jaxb-api</artifactId>
806 <version>2.2.11</version>
807 </dependency>
808
809 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100810 <groupId>org.assertj</groupId>
811 <artifactId>assertj-core</artifactId>
812 <version>3.10.0</version>
813 <scope>compile</scope>
814 </dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200815 <dependency>
816 <groupId>com.google.guava</groupId>
817 <artifactId>guava</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200818 </dependency>
Wojciech Sliwka86683c52019-04-09 14:57:02 +0200819 <dependency>
820 <groupId>io.springfox</groupId>
821 <artifactId>springfox-swagger2</artifactId>
822 <version>2.9.2</version>
823 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200824 </dependencies>
825</project>