blob: 2795239e388e4b9ac12bba8a959b485ae0c8b4e2 [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>
175 <id>npm run-script build</id>
176 <configuration>
177 <arguments>run-script build</arguments>
178 </configuration>
179 <goals>
180 <goal>npm</goal>
181 </goals>
182 <phase>generate-resources</phase>
183 </execution>
184 </executions>
185 </plugin>
186
187 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100188 <groupId>org.apache.maven.plugins</groupId>
189 <artifactId>maven-compiler-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200190 <version>3.5.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100191 <configuration>
192 <source>1.8</source>
193 <target>1.8</target>
194 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200195
196 <executions>
197 <!-- Replacing default-compile as it is treated specially by maven -->
198 <execution>
199 <id>default-compile</id>
200 <phase>none</phase>
201 </execution>
202 <!-- Replacing default-testCompile as it is treated specially by maven -->
203 <execution>
204 <id>default-testCompile</id>
205 <phase>none</phase>
206 </execution>
207 <execution>
208 <id>java-compile</id>
209 <phase>compile</phase>
210 <goals> <goal>compile</goal> </goals>
211 </execution>
212 <execution>
213 <id>java-test-compile</id>
214 <phase>test-compile</phase>
215 <goals> <goal>testCompile</goal> </goals>
216 </execution>
217 </executions>
218
biniek6f2b2082018-12-17 11:18:05 +0100219 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200220
biniek6f2b2082018-12-17 11:18:05 +0100221 <plugin>
222 <groupId>org.apache.maven.plugins</groupId>
223 <artifactId>maven-surefire-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200224 <version>${surefire.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100225 <configuration>
biniek6f2b2082018-12-17 11:18:05 +0100226 <includes>
227 <include>**/Test*.java</include>
228 <include>**/*Test.java</include>
229 <include>**/*TestCase.java</include>
230 </includes>
231 <excludes>
232 <exclude>**/selenium/*.java</exclude>
233 <exclude>**/integrationTest/*.java</exclude>
234 </excludes>
235 <additionalClasspathElements>
236 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
237 </additionalClasspathElements>
238 <systemPropertyVariables>
239 <container.classpath>classpath:</container.classpath>
240 </systemPropertyVariables>
241 <useSystemClassLoader>false</useSystemClassLoader>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200242 <properties>
243 <property>
244 <!-- avoid running JUnit tests within surefire-testng provider -->
245 <name>junit</name>
246 <value>false</value>
247 </property>
248 </properties>
249 <threadCount>1</threadCount>
biniek6f2b2082018-12-17 11:18:05 +0100250 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200251 <dependencies>
252 <!-- Running TestNG and JUnit Tests -->
253 <!-- https://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html -->
254 <dependency>
255 <groupId>org.apache.maven.surefire</groupId>
256 <artifactId>surefire-junit47</artifactId>
257 <version>${surefire.version}</version>
258 </dependency>
259 <dependency>
260 <groupId>org.apache.maven.surefire</groupId>
261 <artifactId>surefire-testng</artifactId>
262 <version>${surefire.version}</version>
263 </dependency>
264 </dependencies>
biniek6f2b2082018-12-17 11:18:05 +0100265 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200266
biniek6f2b2082018-12-17 11:18:05 +0100267 <plugin>
268 <artifactId>maven-assembly-plugin</artifactId>
269 <configuration>
270 <skipAssembly>${skipassembly}</skipAssembly>
271 <descriptors>
272 <descriptor>${basedir}/distribution.xml</descriptor>
273 </descriptors>
274 </configuration>
275 <executions>
276 <execution>
277 <id>make-assembly</id>
278 <phase>package</phase>
279 <goals>
280 <goal>single</goal>
281 </goals>
282 </execution>
283 </executions>
284 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200285
286
biniek6f2b2082018-12-17 11:18:05 +0100287 <plugin>
288 <groupId>org.apache.maven.plugins</groupId>
289 <artifactId>maven-war-plugin</artifactId>
290 <version>3.0.0</version>
291 <configuration>
292 <!-- Build a jar with all the Java classes -->
293 <attachClasses>true</attachClasses>
294 <!-- Do not put any jars in the war -->
295 <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
296 </configuration>
297 </plugin>
298 <plugin>
299 <groupId>org.apache.maven.plugins</groupId>
300 <artifactId>maven-site-plugin</artifactId>
301 <version>3.6</version>
302 <dependencies>
303 <dependency>
304 <groupId>org.apache.maven.wagon</groupId>
305 <artifactId>wagon-webdav-jackrabbit</artifactId>
306 <version>2.10</version>
307 </dependency>
308 </dependencies>
309 </plugin>
310 <plugin>
311 <groupId>pl.project13.maven</groupId>
312 <artifactId>git-commit-id-plugin</artifactId>
313 <version>2.2.4</version>
314 <executions>
315 <execution>
316 <id>get-the-git-infos</id>
317 <goals>
318 <goal>revision</goal>
319 </goals>
320 </execution>
321 </executions>
322 <configuration>
323 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
324 <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
325 <dateFormatTimeZone>${user.timezone}</dateFormatTimeZone>
326 <generateGitPropertiesFile>true</generateGitPropertiesFile>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200327 <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
biniek6f2b2082018-12-17 11:18:05 +0100328 <includeOnlyProperties>
329 <includeOnlyProperty>^git.commit.id$</includeOnlyProperty>
330 <includeOnlyProperty>^git.commit.message.short$</includeOnlyProperty>
331 <includeOnlyProperty>^git.commit.time$</includeOnlyProperty>
332 </includeOnlyProperties>
333 </configuration>
334 </plugin>
Ittay Sterne0a10282019-02-27 17:32:09 +0200335
336 <plugin>
337 <!--
338 Replace phase "none" with "process-sources" to enable.
339 Set organizationName as desired.
340 Then run `mvn license:check-file-header`, or even `mvn
341 license:update-file-header`.
342 -->
343 <groupId>org.codehaus.mojo</groupId>
344 <artifactId>license-maven-plugin</artifactId>
345 <version>1.17</version>
346
347 <executions>
348 <execution>
349 <id>first</id>
350 <goals>
351 <goal>update-file-header</goal>
352 </goals>
353 <!-- replace phase "none" with "process-sources" to enable -->
354 <phase>none</phase>
355 </execution>
356 </executions>
357
358 <configuration>
359 <canUpdateCopyright>false</canUpdateCopyright>
360 <canUpdateDescription>false</canUpdateDescription>
361 <licenseName>apache_v2</licenseName>
362 <processStartTag>============LICENSE_START=======================================================</processStartTag>
363 <processEndTag>============LICENSE_END=========================================================</processEndTag>
364 <sectionDelimiter>================================================================================</sectionDelimiter>
365 <projectName>VID</projectName>
366 <inceptionYear>2017</inceptionYear>
367 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
368 <canUpdateLicense>true</canUpdateLicense>
369 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
370 <emptyLineAfterHeader>true</emptyLineAfterHeader>
371 <verbose>false</verbose>
372
373 <includes>
374 <include>**/*.java</include>
375 <include>**/*.kt</include>
376 <include>**/*.jsp</include>
377 <include>**/*.xml</include>
378 <include>**/*.js</include>
379 <include>**/*.ts</include>
380 <include>**/*.html</include>
381 <include>**/*.css</include>
382 <include>**/*.sql</include>
383 </includes>
384
385 <extraExtensions>
386 <sql>mysql</sql>
387 </extraExtensions>
388
389 <roots>
390 <root>src/main</root>
391 <root>src/test</root>
392 </roots>
393
394 <excludes>
395 <exclude>**/app/vid/external/**/*</exclude>
396 <exclude>**/main/webapp/WEB-INF/**/*</exclude>
397 <exclude>**/test/resources/WEB-INF/**/*</exclude>
398 <exclude>**/app/vid/scripts/angular-ui-tree.js</exclude>
399 </excludes>
400
401 </configuration>
402 </plugin>
403
biniek6f2b2082018-12-17 11:18:05 +0100404 </plugins>
405 </build>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200406
biniek6f2b2082018-12-17 11:18:05 +0100407 <reporting>
408 <plugins>
409 <plugin>
410 <groupId>org.apache.maven.plugins</groupId>
411 <artifactId>maven-javadoc-plugin</artifactId>
412 <version>2.10.4</version>
413 <configuration>
414 <failOnError>false</failOnError>
415 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
416 <docletArtifact>
417 <groupId>org.umlgraph</groupId>
418 <artifactId>umlgraph</artifactId>
419 <version>5.6</version>
420 </docletArtifact>
421 <additionalparam>-views</additionalparam>
422 <useStandardDocletOptions>true</useStandardDocletOptions>
423 </configuration>
424 </plugin>
425 </plugins>
426 </reporting>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200427
biniek6f2b2082018-12-17 11:18:05 +0100428 <dependencies>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200429
biniek6f2b2082018-12-17 11:18:05 +0100430 <dependency>
431 <groupId>com.opencsv</groupId>
432 <artifactId>opencsv</artifactId>
433 <version>4.1</version>
434 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200435
biniek6f2b2082018-12-17 11:18:05 +0100436 <!-- HTTP client -->
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200437
biniek6f2b2082018-12-17 11:18:05 +0100438 <dependency>
439 <groupId>io.joshworks.unirest</groupId>
440 <artifactId>unirest-java</artifactId>
441 <version>0.2.1</version>
442 </dependency>
443 <dependency>
444 <groupId>org.apache.httpcomponents</groupId>
445 <artifactId>httpclient</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100446 </dependency>
447 <dependency>
448 <groupId>org.apache.httpcomponents</groupId>
449 <artifactId>httpasyncclient</artifactId>
450 <version>4.0.2</version>
451 </dependency>
452 <dependency>
453 <groupId>org.apache.httpcomponents</groupId>
454 <artifactId>httpmime</artifactId>
Ittay Stern9f9e9b22019-02-28 12:09:45 +0200455 <version>4.5.7</version>
biniek6f2b2082018-12-17 11:18:05 +0100456 </dependency>
457 <dependency>
458 <groupId>com.xebialabs.restito</groupId>
459 <artifactId>restito</artifactId>
460 <version>0.9.3</version>
461 <scope>test</scope>
462 </dependency>
kurczewsf477d1d2019-03-20 09:52:12 +0100463 <dependency>
464 <groupId>org.jeasy</groupId>
465 <artifactId>easy-random-core</artifactId>
466 <version>4.0.0.RC1</version>
467 <scope>test</scope>
468 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200469
biniek6f2b2082018-12-17 11:18:05 +0100470 <!-- Helpers -->
471 <dependency>
472 <groupId>io.vavr</groupId>
473 <artifactId>vavr</artifactId>
474 <version>0.9.2</version>
475 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200476
biniek6f2b2082018-12-17 11:18:05 +0100477 <!-- SDK overlay war -->
478 <dependency>
479 <groupId>org.onap.portal.sdk</groupId>
480 <artifactId>epsdk-app-overlay</artifactId>
481 <version>${epsdk.version}</version>
482 <type>war</type>
483 </dependency>
484 <dependency>
485 <groupId>org.onap.portal.sdk</groupId>
486 <artifactId>epsdk-app-common</artifactId>
487 <version>${epsdk.version}</version>
488 <type>jar</type>
489 </dependency>
490
491 <dependency>
492 <groupId>org.onap.portal.sdk</groupId>
493 <artifactId>epsdk-core</artifactId>
494 <version>${epsdk.version}</version>
495 </dependency>
496 <dependency>
497 <groupId>org.onap.portal.sdk</groupId>
498 <artifactId>epsdk-analytics</artifactId>
499 <version>${epsdk.version}</version>
500 <exclusions>
501 <exclusion>
502 <groupId>com.lowagie</groupId>
503 <artifactId>itext</artifactId>
504 </exclusion>
505 </exclusions>
506 </dependency>
507 <dependency>
508 <groupId>org.onap.portal.sdk</groupId>
509 <artifactId>epsdk-workflow</artifactId>
510 <version>${epsdk.version}</version>
511 </dependency>
512 <dependency>
513 <groupId>com.att.eelf</groupId>
514 <artifactId>eelf-core</artifactId>
515 <version>1.0.0</version>
516 <exclusions>
517 <exclusion>
518 <artifactId>powermock-api-mockito</artifactId>
519 <groupId>org.powermock</groupId>
520 </exclusion>
521 </exclusions>
522 </dependency>
523 <dependency>
524 <groupId>ch.qos.logback</groupId>
biniek6f2b2082018-12-17 11:18:05 +0100525 <artifactId>logback-classic</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100526 </dependency>
527
Ittay Stern6ad41e32018-12-31 17:21:27 +0200528 <dependency>
529 <groupId>org.jetbrains.kotlin</groupId>
530 <artifactId>kotlin-stdlib-jdk8</artifactId>
531 <version>${kotlin.version}</version>
532 </dependency>
533
biniek6f2b2082018-12-17 11:18:05 +0100534 <!-- Mapper -->
535 <dependency>
536 <groupId>com.fasterxml.jackson.core</groupId>
537 <artifactId>jackson-annotations</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200538 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100539 </dependency>
540 <dependency>
541 <groupId>com.fasterxml.jackson.core</groupId>
542 <artifactId>jackson-core</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200543 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100544 </dependency>
545 <dependency>
546 <groupId>com.fasterxml.jackson.core</groupId>
547 <artifactId>jackson-databind</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200548 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100549 </dependency>
550 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200551 <groupId>com.fasterxml.jackson.module</groupId>
552 <artifactId>jackson-module-kotlin</artifactId>
553 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100554 </dependency>
Ittay Stern2687d312019-02-21 17:26:33 +0200555 <!-- c3p0 is to override epsdk-app-common's c3p0 0.9.5.2 vulnerability -->
biniek6f2b2082018-12-17 11:18:05 +0100556 <dependency>
557 <groupId>com.mchange</groupId>
558 <artifactId>c3p0</artifactId>
golabek22b96132019-04-23 11:11:12 +0200559 <version>0.9.5.4</version>
biniek6f2b2082018-12-17 11:18:05 +0100560 </dependency>
561 <dependency>
562 <groupId>io.searchbox</groupId>
563 <artifactId>jest</artifactId>
564 <version>2.0.0</version>
565 <exclusions>
566 <exclusion>
567 <groupId>commons-logging</groupId>
568 <artifactId>commons-logging</artifactId>
569 </exclusion>
570 </exclusions>
571 </dependency>
572 <dependency>
573 <groupId>javax.servlet</groupId>
574 <artifactId>javax.servlet-api</artifactId>
575 <version>3.1.0</version>
576 <scope>provided</scope>
577 </dependency>
578 <dependency>
579 <groupId>junit</groupId>
580 <artifactId>junit</artifactId>
581 <version>4.12</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200582 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100583 </dependency>
584 <dependency>
585 <groupId>commons-io</groupId>
586 <artifactId>commons-io</artifactId>
587 <version>2.4</version>
588 <!--<scope>test</scope>-->
589 </dependency>
590 <dependency>
591 <groupId>com.google.code.bean-matchers</groupId>
592 <artifactId>bean-matchers</artifactId>
593 <version>0.11</version>
594 <scope>test</scope>
595 </dependency>
596 <dependency>
597 <groupId>org.json</groupId>
598 <artifactId>json</artifactId>
599 <version>20160212</version>
600 </dependency>
601 <dependency>
602 <groupId>org.quartz-scheduler</groupId>
603 <artifactId>quartz</artifactId>
604 <version>2.2.1</version>
605 <exclusions>
606 <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 -->
607 <exclusion>
608 <groupId>c3p0</groupId>
609 <artifactId>c3p0</artifactId>
610 </exclusion>
611 </exclusions>
612 </dependency>
613 <!-- bridge to implement commons-logging using slf4j -->
614 <dependency>
615 <groupId>org.slf4j</groupId>
616 <artifactId>jcl-over-slf4j</artifactId>
617 <version>1.7.12</version>
618 </dependency>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200619
620 <!-- springframework to override epsdk-app-common's and epsdk-core's versions -->
biniek6f2b2082018-12-17 11:18:05 +0100621 <dependency>
622 <groupId>org.springframework</groupId>
623 <artifactId>spring-core</artifactId>
624 <version>${springframework.version}</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>org.springframework</groupId>
634 <artifactId>spring-test</artifactId>
635 <version>${springframework.version}</version>
636 </dependency>
637 <dependency>
638 <groupId>org.springframework</groupId>
639 <artifactId>spring-tx</artifactId>
640 <version>${springframework.version}</version>
641 </dependency>
642 <dependency>
643 <groupId>org.springframework</groupId>
644 <artifactId>spring-web</artifactId>
645 <version>${springframework.version}</version>
646 </dependency>
647 <dependency>
648 <groupId>org.springframework</groupId>
649 <artifactId>spring-webmvc</artifactId>
650 <version>${springframework.version}</version>
651 </dependency>
652 <dependency>
Ittay Stern3bbd23f2019-03-26 11:25:37 +0200653 <groupId>org.springframework</groupId>
654 <artifactId>spring-context-support</artifactId>
655 <version>${springframework.version}</version>
656 </dependency>
657 <dependency>
658 <groupId>org.springframework</groupId>
659 <artifactId>spring-orm</artifactId>
660 <version>${springframework.version}</version>
661 </dependency>
662 <dependency>
663 <groupId>org.springframework</groupId>
664 <artifactId>spring-aop</artifactId>
665 <version>${springframework.version}</version>
666 </dependency>
667
668 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100669 <groupId>org.glassfish.jersey.core</groupId>
670 <artifactId>jersey-client</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200671 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100672 </dependency>
673 <dependency>
674 <groupId>org.glassfish.jersey.connectors</groupId>
675 <artifactId>jersey-jetty-connector</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200676 <version>${jersey.version}</version>
677 </dependency>
678 <!--https://stackoverflow.com/questions/44088493/jersey-stopped-working-with-injectionmanagerfactory-not-found-->
679 <dependency>
680 <groupId>org.glassfish.jersey.inject</groupId>
681 <artifactId>jersey-hk2</artifactId>
682 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100683 </dependency>
684 <dependency>
685 <groupId>com.fasterxml.jackson.jaxrs</groupId>
686 <artifactId>jackson-jaxrs-json-provider</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200687 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100688 </dependency>
689 <dependency>
690 <groupId>commons-beanutils</groupId>
691 <artifactId>commons-beanutils</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100692 </dependency>
693 <dependency>
694 <groupId>com.googlecode.json-simple</groupId>
695 <artifactId>json-simple</artifactId>
696 <version>1.1.1</version>
697 </dependency>
698 <dependency>
699 <groupId>org.seleniumhq.selenium</groupId>
700 <artifactId>selenium-java</artifactId>
701 <version>2.53.1</version>
702 <scope>test</scope>
703 </dependency>
704 <dependency>
705 <groupId>org.seleniumhq.selenium</groupId>
706 <artifactId>selenium-api</artifactId>
707 <version>2.53.1</version>
708 <scope>test</scope>
709 </dependency>
710 <dependency>
711 <groupId>org.testng</groupId>
712 <artifactId>testng</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200713 <version>6.14.3</version>
biniek6f2b2082018-12-17 11:18:05 +0100714 <scope>test</scope>
715 </dependency>
716 <dependency>
717 <groupId>org.mockito</groupId>
718 <artifactId>mockito-core</artifactId>
719 <version>2.23.0</version>
720 <scope>test</scope>
721 </dependency>
722 <dependency>
723 <groupId>org.seleniumhq.selenium</groupId>
724 <artifactId>selenium-firefox-driver</artifactId>
725 <version>2.53.1</version>
726 </dependency>
727 <dependency>
728 <groupId>xml-apis</groupId>
729 <artifactId>xml-apis</artifactId>
730 <version>1.4.01</version>
731 </dependency>
732 <dependency>
733 <groupId>org.yaml</groupId>
734 <artifactId>snakeyaml</artifactId>
735 <version>1.16</version>
736 </dependency>
737 <dependency>
738 <groupId>org.skyscreamer</groupId>
739 <artifactId>jsonassert</artifactId>
740 <version>1.5.0</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200741 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100742 </dependency>
743 <dependency>
744 <groupId>org.onap.sdc.sdc-tosca</groupId>
745 <artifactId>sdc-tosca</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200746 <version>1.4.7</version>
biniek6f2b2082018-12-17 11:18:05 +0100747 <scope>compile</scope>
748 </dependency>
749 <dependency>
750 <groupId>net.javacrumbs.json-unit</groupId>
751 <artifactId>json-unit</artifactId>
752 <version>1.23.0</version>
753 <scope>test</scope>
754 </dependency>
755 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200756 <groupId>org.glassfish.jersey.media</groupId>
757 <artifactId>jersey-media-json-jackson</artifactId>
758 <version>${jersey.version}</version>
759 <scope>test</scope>
760 </dependency>
761 <dependency>
762 <groupId>org.apache.commons</groupId>
763 <artifactId>commons-lang3</artifactId>
764 <version>3.6</version>
765 </dependency>
766 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100767 <groupId>org.apache.commons</groupId>
768 <artifactId>commons-text</artifactId>
769 <version>1.1</version>
770 </dependency>
771 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200772 <groupId>org.apache.commons</groupId>
773 <artifactId>commons-proxy</artifactId>
774 <version>1.0</version>
775 </dependency>
776 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100777 <groupId>org.hamcrest</groupId>
778 <artifactId>java-hamcrest</artifactId>
779 <version>2.0.0.0</version>
780 <scope>test</scope>
781 </dependency>
782 <dependency>
783 <groupId>org.togglz</groupId>
784 <artifactId>togglz-spring-core</artifactId>
785 <version>2.5.0.Final</version>
786 </dependency>
787 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200788 <groupId>com.h2database</groupId>
789 <artifactId>h2</artifactId>
790 <version>1.4.196</version>
791 <scope>test</scope>
792 </dependency>
793 <dependency>
794 <groupId>javax.xml.bind</groupId>
795 <artifactId>jaxb-api</artifactId>
796 <version>2.2.11</version>
797 </dependency>
798
799 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100800 <groupId>org.assertj</groupId>
801 <artifactId>assertj-core</artifactId>
802 <version>3.10.0</version>
803 <scope>compile</scope>
804 </dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200805 <dependency>
806 <groupId>com.google.guava</groupId>
807 <artifactId>guava</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200808 </dependency>
Wojciech Sliwka86683c52019-04-09 14:57:02 +0200809 <dependency>
810 <groupId>io.springfox</groupId>
811 <artifactId>springfox-swagger2</artifactId>
812 <version>2.9.2</version>
813 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200814 </dependencies>
815</project>