blob: 8482ae627160ec14aa81ece1662f7311abcf7372 [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>
20 <version>1.2.3</version>
21 <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>
29 <springframework.version>4.2.9.RELEASE</springframework.version>
30 <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>
129
biniek6f2b2082018-12-17 11:18:05 +0100130 <plugin>
131 <groupId>org.sonatype.plugins</groupId>
132 <artifactId>nexus-staging-maven-plugin</artifactId>
133 <version>1.6.7</version>
134 <extensions>true</extensions>
135 <configuration>
136 <nexusUrl>${nexusproxy}</nexusUrl>
137 <stagingProfileId>176c31dfe190a</stagingProfileId>
138 <serverId>ecomp-staging</serverId>
139 </configuration>
140 </plugin>
141 <plugin>
142 <groupId>org.jacoco</groupId>
143 <artifactId>jacoco-maven-plugin</artifactId>
Ittay Stern67a23ab2019-02-25 19:21:32 +0200144 <version>0.8.3</version>
biniek6f2b2082018-12-17 11:18:05 +0100145 <executions>
146 <execution>
147 <id>default-prepare-agent</id>
148 <goals>
149 <goal>prepare-agent</goal>
150 </goals>
151 </execution>
152 <execution>
153 <id>default-report</id>
154 <goals>
155 <goal>report</goal>
156 </goals>
157 </execution>
158 </executions>
159 </plugin>
160 <plugin>
161 <groupId>org.apache.tomcat.maven</groupId>
162 <artifactId>tomcat6-maven-plugin</artifactId>
163 <version>2.2</version>
164 </plugin>
165 <plugin>
166 <groupId>org.apache.tomcat.maven</groupId>
167 <artifactId>tomcat7-maven-plugin</artifactId>
168 <version>2.2</version>
169 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200170
biniek6f2b2082018-12-17 11:18:05 +0100171 <plugin>
golabekec4f9542019-01-28 09:34:48 +0100172 <groupId>com.github.eirslett</groupId>
173 <artifactId>frontend-maven-plugin</artifactId>
174 <version>${eirslett.version}</version>
175 <executions>
176 <execution>
177 <id>install node and npm</id>
178 <goals>
179 <goal>install-node-and-npm</goal>
180 </goals>
181 <phase>generate-resources</phase>
182 <configuration>
183 <nodeVersion>${node.version}</nodeVersion>
184 </configuration>
185 </execution>
186 <execution>
187 <id>npm run-script build</id>
188 <configuration>
189 <arguments>run-script build</arguments>
190 </configuration>
191 <goals>
192 <goal>npm</goal>
193 </goals>
194 <phase>generate-resources</phase>
195 </execution>
196 </executions>
197 </plugin>
198
199 <plugin>
biniek6f2b2082018-12-17 11:18:05 +0100200 <groupId>org.apache.maven.plugins</groupId>
201 <artifactId>maven-compiler-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200202 <version>3.5.1</version>
biniek6f2b2082018-12-17 11:18:05 +0100203 <configuration>
204 <source>1.8</source>
205 <target>1.8</target>
206 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200207
208 <executions>
209 <!-- Replacing default-compile as it is treated specially by maven -->
210 <execution>
211 <id>default-compile</id>
212 <phase>none</phase>
213 </execution>
214 <!-- Replacing default-testCompile as it is treated specially by maven -->
215 <execution>
216 <id>default-testCompile</id>
217 <phase>none</phase>
218 </execution>
219 <execution>
220 <id>java-compile</id>
221 <phase>compile</phase>
222 <goals> <goal>compile</goal> </goals>
223 </execution>
224 <execution>
225 <id>java-test-compile</id>
226 <phase>test-compile</phase>
227 <goals> <goal>testCompile</goal> </goals>
228 </execution>
229 </executions>
230
biniek6f2b2082018-12-17 11:18:05 +0100231 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200232
biniek6f2b2082018-12-17 11:18:05 +0100233 <plugin>
234 <groupId>org.apache.maven.plugins</groupId>
235 <artifactId>maven-surefire-plugin</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200236 <version>${surefire.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100237 <configuration>
biniek6f2b2082018-12-17 11:18:05 +0100238 <includes>
239 <include>**/Test*.java</include>
240 <include>**/*Test.java</include>
241 <include>**/*TestCase.java</include>
242 </includes>
243 <excludes>
244 <exclude>**/selenium/*.java</exclude>
245 <exclude>**/integrationTest/*.java</exclude>
246 </excludes>
247 <additionalClasspathElements>
248 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
249 </additionalClasspathElements>
250 <systemPropertyVariables>
251 <container.classpath>classpath:</container.classpath>
252 </systemPropertyVariables>
253 <useSystemClassLoader>false</useSystemClassLoader>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200254 <properties>
255 <property>
256 <!-- avoid running JUnit tests within surefire-testng provider -->
257 <name>junit</name>
258 <value>false</value>
259 </property>
260 </properties>
261 <threadCount>1</threadCount>
biniek6f2b2082018-12-17 11:18:05 +0100262 </configuration>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200263 <dependencies>
264 <!-- Running TestNG and JUnit Tests -->
265 <!-- https://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html -->
266 <dependency>
267 <groupId>org.apache.maven.surefire</groupId>
268 <artifactId>surefire-junit47</artifactId>
269 <version>${surefire.version}</version>
270 </dependency>
271 <dependency>
272 <groupId>org.apache.maven.surefire</groupId>
273 <artifactId>surefire-testng</artifactId>
274 <version>${surefire.version}</version>
275 </dependency>
276 </dependencies>
biniek6f2b2082018-12-17 11:18:05 +0100277 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200278
biniek6f2b2082018-12-17 11:18:05 +0100279 <plugin>
280 <artifactId>maven-assembly-plugin</artifactId>
281 <configuration>
282 <skipAssembly>${skipassembly}</skipAssembly>
283 <descriptors>
284 <descriptor>${basedir}/distribution.xml</descriptor>
285 </descriptors>
286 </configuration>
287 <executions>
288 <execution>
289 <id>make-assembly</id>
290 <phase>package</phase>
291 <goals>
292 <goal>single</goal>
293 </goals>
294 </execution>
295 </executions>
296 </plugin>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200297
298
biniek6f2b2082018-12-17 11:18:05 +0100299 <plugin>
300 <groupId>org.apache.maven.plugins</groupId>
301 <artifactId>maven-war-plugin</artifactId>
302 <version>3.0.0</version>
303 <configuration>
304 <!-- Build a jar with all the Java classes -->
305 <attachClasses>true</attachClasses>
306 <!-- Do not put any jars in the war -->
307 <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
308 </configuration>
309 </plugin>
310 <plugin>
311 <groupId>org.apache.maven.plugins</groupId>
312 <artifactId>maven-site-plugin</artifactId>
313 <version>3.6</version>
314 <dependencies>
315 <dependency>
316 <groupId>org.apache.maven.wagon</groupId>
317 <artifactId>wagon-webdav-jackrabbit</artifactId>
318 <version>2.10</version>
319 </dependency>
320 </dependencies>
321 </plugin>
322 <plugin>
323 <groupId>pl.project13.maven</groupId>
324 <artifactId>git-commit-id-plugin</artifactId>
325 <version>2.2.4</version>
326 <executions>
327 <execution>
328 <id>get-the-git-infos</id>
329 <goals>
330 <goal>revision</goal>
331 </goals>
332 </execution>
333 </executions>
334 <configuration>
335 <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
336 <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
337 <dateFormatTimeZone>${user.timezone}</dateFormatTimeZone>
338 <generateGitPropertiesFile>true</generateGitPropertiesFile>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200339 <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
biniek6f2b2082018-12-17 11:18:05 +0100340 <includeOnlyProperties>
341 <includeOnlyProperty>^git.commit.id$</includeOnlyProperty>
342 <includeOnlyProperty>^git.commit.message.short$</includeOnlyProperty>
343 <includeOnlyProperty>^git.commit.time$</includeOnlyProperty>
344 </includeOnlyProperties>
345 </configuration>
346 </plugin>
Ittay Sterne0a10282019-02-27 17:32:09 +0200347
348 <plugin>
349 <!--
350 Replace phase "none" with "process-sources" to enable.
351 Set organizationName as desired.
352 Then run `mvn license:check-file-header`, or even `mvn
353 license:update-file-header`.
354 -->
355 <groupId>org.codehaus.mojo</groupId>
356 <artifactId>license-maven-plugin</artifactId>
357 <version>1.17</version>
358
359 <executions>
360 <execution>
361 <id>first</id>
362 <goals>
363 <goal>update-file-header</goal>
364 </goals>
365 <!-- replace phase "none" with "process-sources" to enable -->
366 <phase>none</phase>
367 </execution>
368 </executions>
369
370 <configuration>
371 <canUpdateCopyright>false</canUpdateCopyright>
372 <canUpdateDescription>false</canUpdateDescription>
373 <licenseName>apache_v2</licenseName>
374 <processStartTag>============LICENSE_START=======================================================</processStartTag>
375 <processEndTag>============LICENSE_END=========================================================</processEndTag>
376 <sectionDelimiter>================================================================================</sectionDelimiter>
377 <projectName>VID</projectName>
378 <inceptionYear>2017</inceptionYear>
379 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
380 <canUpdateLicense>true</canUpdateLicense>
381 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
382 <emptyLineAfterHeader>true</emptyLineAfterHeader>
383 <verbose>false</verbose>
384
385 <includes>
386 <include>**/*.java</include>
387 <include>**/*.kt</include>
388 <include>**/*.jsp</include>
389 <include>**/*.xml</include>
390 <include>**/*.js</include>
391 <include>**/*.ts</include>
392 <include>**/*.html</include>
393 <include>**/*.css</include>
394 <include>**/*.sql</include>
395 </includes>
396
397 <extraExtensions>
398 <sql>mysql</sql>
399 </extraExtensions>
400
401 <roots>
402 <root>src/main</root>
403 <root>src/test</root>
404 </roots>
405
406 <excludes>
407 <exclude>**/app/vid/external/**/*</exclude>
408 <exclude>**/main/webapp/WEB-INF/**/*</exclude>
409 <exclude>**/test/resources/WEB-INF/**/*</exclude>
410 <exclude>**/app/vid/scripts/angular-ui-tree.js</exclude>
411 </excludes>
412
413 </configuration>
414 </plugin>
415
biniek6f2b2082018-12-17 11:18:05 +0100416 </plugins>
417 </build>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200418
biniek6f2b2082018-12-17 11:18:05 +0100419 <reporting>
420 <plugins>
421 <plugin>
422 <groupId>org.apache.maven.plugins</groupId>
423 <artifactId>maven-javadoc-plugin</artifactId>
424 <version>2.10.4</version>
425 <configuration>
426 <failOnError>false</failOnError>
427 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
428 <docletArtifact>
429 <groupId>org.umlgraph</groupId>
430 <artifactId>umlgraph</artifactId>
431 <version>5.6</version>
432 </docletArtifact>
433 <additionalparam>-views</additionalparam>
434 <useStandardDocletOptions>true</useStandardDocletOptions>
435 </configuration>
436 </plugin>
437 </plugins>
438 </reporting>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200439
biniek6f2b2082018-12-17 11:18:05 +0100440 <dependencies>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200441
biniek6f2b2082018-12-17 11:18:05 +0100442 <dependency>
443 <groupId>com.opencsv</groupId>
444 <artifactId>opencsv</artifactId>
445 <version>4.1</version>
446 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200447
biniek6f2b2082018-12-17 11:18:05 +0100448 <!-- HTTP client -->
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200449
biniek6f2b2082018-12-17 11:18:05 +0100450 <dependency>
451 <groupId>io.joshworks.unirest</groupId>
452 <artifactId>unirest-java</artifactId>
453 <version>0.2.1</version>
454 </dependency>
455 <dependency>
456 <groupId>org.apache.httpcomponents</groupId>
457 <artifactId>httpclient</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100458 </dependency>
459 <dependency>
460 <groupId>org.apache.httpcomponents</groupId>
461 <artifactId>httpasyncclient</artifactId>
462 <version>4.0.2</version>
463 </dependency>
464 <dependency>
465 <groupId>org.apache.httpcomponents</groupId>
466 <artifactId>httpmime</artifactId>
Ittay Stern9f9e9b22019-02-28 12:09:45 +0200467 <version>4.5.7</version>
biniek6f2b2082018-12-17 11:18:05 +0100468 </dependency>
469 <dependency>
470 <groupId>com.xebialabs.restito</groupId>
471 <artifactId>restito</artifactId>
472 <version>0.9.3</version>
473 <scope>test</scope>
474 </dependency>
kurczewsf477d1d2019-03-20 09:52:12 +0100475 <dependency>
476 <groupId>org.jeasy</groupId>
477 <artifactId>easy-random-core</artifactId>
478 <version>4.0.0.RC1</version>
479 <scope>test</scope>
480 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200481
biniek6f2b2082018-12-17 11:18:05 +0100482 <!-- Helpers -->
483 <dependency>
484 <groupId>io.vavr</groupId>
485 <artifactId>vavr</artifactId>
486 <version>0.9.2</version>
487 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200488
biniek6f2b2082018-12-17 11:18:05 +0100489 <!-- SDK overlay war -->
490 <dependency>
491 <groupId>org.onap.portal.sdk</groupId>
492 <artifactId>epsdk-app-overlay</artifactId>
493 <version>${epsdk.version}</version>
494 <type>war</type>
495 </dependency>
496 <dependency>
497 <groupId>org.onap.portal.sdk</groupId>
498 <artifactId>epsdk-app-common</artifactId>
499 <version>${epsdk.version}</version>
500 <type>jar</type>
501 </dependency>
502
503 <dependency>
504 <groupId>org.onap.portal.sdk</groupId>
505 <artifactId>epsdk-core</artifactId>
506 <version>${epsdk.version}</version>
507 </dependency>
508 <dependency>
509 <groupId>org.onap.portal.sdk</groupId>
510 <artifactId>epsdk-analytics</artifactId>
511 <version>${epsdk.version}</version>
512 <exclusions>
513 <exclusion>
514 <groupId>com.lowagie</groupId>
515 <artifactId>itext</artifactId>
516 </exclusion>
517 </exclusions>
518 </dependency>
519 <dependency>
520 <groupId>org.onap.portal.sdk</groupId>
521 <artifactId>epsdk-workflow</artifactId>
522 <version>${epsdk.version}</version>
523 </dependency>
524 <dependency>
525 <groupId>com.att.eelf</groupId>
526 <artifactId>eelf-core</artifactId>
527 <version>1.0.0</version>
528 <exclusions>
529 <exclusion>
530 <artifactId>powermock-api-mockito</artifactId>
531 <groupId>org.powermock</groupId>
532 </exclusion>
533 </exclusions>
534 </dependency>
535 <dependency>
536 <groupId>ch.qos.logback</groupId>
biniek6f2b2082018-12-17 11:18:05 +0100537 <artifactId>logback-classic</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100538 </dependency>
539
Ittay Stern6ad41e32018-12-31 17:21:27 +0200540 <dependency>
541 <groupId>org.jetbrains.kotlin</groupId>
542 <artifactId>kotlin-stdlib-jdk8</artifactId>
543 <version>${kotlin.version}</version>
544 </dependency>
545
biniek6f2b2082018-12-17 11:18:05 +0100546 <!-- Mapper -->
547 <dependency>
548 <groupId>com.fasterxml.jackson.core</groupId>
549 <artifactId>jackson-annotations</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200550 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100551 </dependency>
552 <dependency>
553 <groupId>com.fasterxml.jackson.core</groupId>
554 <artifactId>jackson-core</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200555 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100556 </dependency>
557 <dependency>
558 <groupId>com.fasterxml.jackson.core</groupId>
559 <artifactId>jackson-databind</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200560 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100561 </dependency>
562 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200563 <groupId>com.fasterxml.jackson.module</groupId>
564 <artifactId>jackson-module-kotlin</artifactId>
565 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100566 </dependency>
Ittay Stern2687d312019-02-21 17:26:33 +0200567 <!-- c3p0 is to override epsdk-app-common's c3p0 0.9.5.2 vulnerability -->
biniek6f2b2082018-12-17 11:18:05 +0100568 <dependency>
569 <groupId>com.mchange</groupId>
570 <artifactId>c3p0</artifactId>
Ittay Stern2687d312019-02-21 17:26:33 +0200571 <version>0.9.5.3</version>
biniek6f2b2082018-12-17 11:18:05 +0100572 </dependency>
573 <dependency>
574 <groupId>io.searchbox</groupId>
575 <artifactId>jest</artifactId>
576 <version>2.0.0</version>
577 <exclusions>
578 <exclusion>
579 <groupId>commons-logging</groupId>
580 <artifactId>commons-logging</artifactId>
581 </exclusion>
582 </exclusions>
583 </dependency>
584 <dependency>
585 <groupId>javax.servlet</groupId>
586 <artifactId>javax.servlet-api</artifactId>
587 <version>3.1.0</version>
588 <scope>provided</scope>
589 </dependency>
590 <dependency>
591 <groupId>junit</groupId>
592 <artifactId>junit</artifactId>
593 <version>4.12</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200594 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100595 </dependency>
596 <dependency>
597 <groupId>commons-io</groupId>
598 <artifactId>commons-io</artifactId>
599 <version>2.4</version>
600 <!--<scope>test</scope>-->
601 </dependency>
602 <dependency>
603 <groupId>com.google.code.bean-matchers</groupId>
604 <artifactId>bean-matchers</artifactId>
605 <version>0.11</version>
606 <scope>test</scope>
607 </dependency>
608 <dependency>
609 <groupId>org.json</groupId>
610 <artifactId>json</artifactId>
611 <version>20160212</version>
612 </dependency>
613 <dependency>
614 <groupId>org.quartz-scheduler</groupId>
615 <artifactId>quartz</artifactId>
616 <version>2.2.1</version>
617 <exclusions>
618 <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 -->
619 <exclusion>
620 <groupId>c3p0</groupId>
621 <artifactId>c3p0</artifactId>
622 </exclusion>
623 </exclusions>
624 </dependency>
625 <!-- bridge to implement commons-logging using slf4j -->
626 <dependency>
627 <groupId>org.slf4j</groupId>
628 <artifactId>jcl-over-slf4j</artifactId>
629 <version>1.7.12</version>
630 </dependency>
631 <dependency>
632 <groupId>org.springframework</groupId>
633 <artifactId>spring-context-support</artifactId>
634 <version>${springframework.version}</version>
635 </dependency>
636 <dependency>
637 <groupId>org.springframework</groupId>
638 <artifactId>spring-core</artifactId>
639 <version>${springframework.version}</version>
640 <exclusions>
641 <exclusion>
642 <groupId>commons-logging</groupId>
643 <artifactId>commons-logging</artifactId>
644 </exclusion>
645 </exclusions>
646 </dependency>
647 <dependency>
648 <groupId>org.springframework</groupId>
649 <artifactId>spring-test</artifactId>
650 <version>${springframework.version}</version>
651 </dependency>
652 <dependency>
653 <groupId>org.springframework</groupId>
654 <artifactId>spring-tx</artifactId>
655 <version>${springframework.version}</version>
656 </dependency>
657 <dependency>
658 <groupId>org.springframework</groupId>
659 <artifactId>spring-web</artifactId>
660 <version>${springframework.version}</version>
661 </dependency>
662 <dependency>
663 <groupId>org.springframework</groupId>
664 <artifactId>spring-webmvc</artifactId>
665 <version>${springframework.version}</version>
666 </dependency>
667 <dependency>
668 <groupId>org.glassfish.jersey.core</groupId>
669 <artifactId>jersey-client</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200670 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100671 </dependency>
672 <dependency>
673 <groupId>org.glassfish.jersey.connectors</groupId>
674 <artifactId>jersey-jetty-connector</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200675 <version>${jersey.version}</version>
676 </dependency>
677 <!--https://stackoverflow.com/questions/44088493/jersey-stopped-working-with-injectionmanagerfactory-not-found-->
678 <dependency>
679 <groupId>org.glassfish.jersey.inject</groupId>
680 <artifactId>jersey-hk2</artifactId>
681 <version>${jersey.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100682 </dependency>
683 <dependency>
684 <groupId>com.fasterxml.jackson.jaxrs</groupId>
685 <artifactId>jackson-jaxrs-json-provider</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200686 <version>${jackson.version}</version>
biniek6f2b2082018-12-17 11:18:05 +0100687 </dependency>
688 <dependency>
689 <groupId>commons-beanutils</groupId>
690 <artifactId>commons-beanutils</artifactId>
biniek6f2b2082018-12-17 11:18:05 +0100691 </dependency>
692 <dependency>
693 <groupId>com.googlecode.json-simple</groupId>
694 <artifactId>json-simple</artifactId>
695 <version>1.1.1</version>
696 </dependency>
697 <dependency>
698 <groupId>org.seleniumhq.selenium</groupId>
699 <artifactId>selenium-java</artifactId>
700 <version>2.53.1</version>
701 <scope>test</scope>
702 </dependency>
703 <dependency>
704 <groupId>org.seleniumhq.selenium</groupId>
705 <artifactId>selenium-api</artifactId>
706 <version>2.53.1</version>
707 <scope>test</scope>
708 </dependency>
709 <dependency>
710 <groupId>org.testng</groupId>
711 <artifactId>testng</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200712 <version>6.14.3</version>
biniek6f2b2082018-12-17 11:18:05 +0100713 <scope>test</scope>
714 </dependency>
715 <dependency>
716 <groupId>org.mockito</groupId>
717 <artifactId>mockito-core</artifactId>
718 <version>2.23.0</version>
719 <scope>test</scope>
720 </dependency>
721 <dependency>
722 <groupId>org.seleniumhq.selenium</groupId>
723 <artifactId>selenium-firefox-driver</artifactId>
724 <version>2.53.1</version>
725 </dependency>
726 <dependency>
727 <groupId>xml-apis</groupId>
728 <artifactId>xml-apis</artifactId>
729 <version>1.4.01</version>
730 </dependency>
731 <dependency>
732 <groupId>org.yaml</groupId>
733 <artifactId>snakeyaml</artifactId>
734 <version>1.16</version>
735 </dependency>
736 <dependency>
737 <groupId>org.skyscreamer</groupId>
738 <artifactId>jsonassert</artifactId>
739 <version>1.5.0</version>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200740 <scope>test</scope>
biniek6f2b2082018-12-17 11:18:05 +0100741 </dependency>
742 <dependency>
743 <groupId>org.onap.sdc.sdc-tosca</groupId>
744 <artifactId>sdc-tosca</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200745 <version>1.4.7</version>
biniek6f2b2082018-12-17 11:18:05 +0100746 <scope>compile</scope>
747 </dependency>
748 <dependency>
749 <groupId>net.javacrumbs.json-unit</groupId>
750 <artifactId>json-unit</artifactId>
751 <version>1.23.0</version>
752 <scope>test</scope>
753 </dependency>
754 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200755 <groupId>org.glassfish.jersey.media</groupId>
756 <artifactId>jersey-media-json-jackson</artifactId>
757 <version>${jersey.version}</version>
758 <scope>test</scope>
759 </dependency>
760 <dependency>
761 <groupId>org.apache.commons</groupId>
762 <artifactId>commons-lang3</artifactId>
763 <version>3.6</version>
764 </dependency>
765 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100766 <groupId>org.apache.commons</groupId>
767 <artifactId>commons-text</artifactId>
768 <version>1.1</version>
769 </dependency>
770 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200771 <groupId>org.apache.commons</groupId>
772 <artifactId>commons-proxy</artifactId>
773 <version>1.0</version>
774 </dependency>
775 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100776 <groupId>org.hamcrest</groupId>
777 <artifactId>java-hamcrest</artifactId>
778 <version>2.0.0.0</version>
779 <scope>test</scope>
780 </dependency>
781 <dependency>
782 <groupId>org.togglz</groupId>
783 <artifactId>togglz-spring-core</artifactId>
784 <version>2.5.0.Final</version>
785 </dependency>
786 <dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200787 <groupId>com.h2database</groupId>
788 <artifactId>h2</artifactId>
789 <version>1.4.196</version>
790 <scope>test</scope>
791 </dependency>
792 <dependency>
793 <groupId>javax.xml.bind</groupId>
794 <artifactId>jaxb-api</artifactId>
795 <version>2.2.11</version>
796 </dependency>
797
798 <dependency>
biniek6f2b2082018-12-17 11:18:05 +0100799 <groupId>org.assertj</groupId>
800 <artifactId>assertj-core</artifactId>
801 <version>3.10.0</version>
802 <scope>compile</scope>
803 </dependency>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200804 <dependency>
805 <groupId>com.google.guava</groupId>
806 <artifactId>guava</artifactId>
Ittay Stern6ad41e32018-12-31 17:21:27 +0200807 </dependency>
Stern, Ittay (is9613)f22f8242018-11-27 13:22:35 +0200808 </dependencies>
809</project>