blob: 85cf87574ff06e7578911f67fe814c6cb83d7d2c [file] [log] [blame]
st782sb54df0d2017-05-04 07:48:42 -04001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
st782s21a87612018-01-30 17:29:36 -05004
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -04005 <parent>
6 <groupId>org.onap.portal</groupId>
7 <artifactId>onap-portal-parent</artifactId>
Muni Mohan Kunchifca38e12020-07-01 09:38:08 -04008 <version>3.4.0</version>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -04009 </parent>
10
st782s21a87612018-01-30 17:29:36 -050011 <artifactId>portal-be-common</artifactId>
st782sb54df0d2017-05-04 07:48:42 -040012 <packaging>war</packaging>
st782sb54df0d2017-05-04 07:48:42 -040013
14 <properties>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -040015 <skipTests>false</skipTests>
st782sb54df0d2017-05-04 07:48:42 -040016 </properties>
17
st782sb54df0d2017-05-04 07:48:42 -040018 <build>
19 <!-- The war file name carries no version number -->
20 <finalName>${project.artifactId}</finalName>
21
22 <plugins>
st782sb54df0d2017-05-04 07:48:42 -040023 <!-- Generate javadoc jar; see profile for Java 8 -->
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-javadoc-plugin</artifactId>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040027 <version>3.0.0-M1</version>
st782sb54df0d2017-05-04 07:48:42 -040028 <executions>
29 <execution>
30 <id>attach-javadocs</id>
31 <goals>
32 <goal>jar</goal>
33 </goals>
34 </execution>
35 </executions>
36 </plugin>
37
38 <!-- Generate source jar -->
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-source-plugin</artifactId>
42 <version>3.0.0</version>
43 <executions>
44 <execution>
45 <id>attach-sources</id>
46 <goals>
47 <goal>jar</goal>
48 </goals>
49 </execution>
50 </executions>
51 </plugin>
st782s21a87612018-01-30 17:29:36 -050052
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-jar-plugin</artifactId>
56 <version>3.0.0</version>
57 <executions>
58 <execution>
59 <goals>
60 <goal>test-jar</goal>
61 </goals>
62 </execution>
63 </executions>
64 </plugin>
st782sb54df0d2017-05-04 07:48:42 -040065
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-war-plugin</artifactId>
69 <version>3.0.0</version>
70 <configuration>
71 <!-- Build a jar with all the Java classes -->
72 <attachClasses>true</attachClasses>
73 <!-- Do not put any jars in the war -->
74 <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
75 </configuration>
76 </plugin>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040077
Christopher Lott (cl778h)31ba5d12017-07-12 14:28:05 -040078 <!-- No deployment step for this project -->
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-deploy-plugin</artifactId>
82 <version>2.8</version>
83 <configuration>
84 <skip>true</skip>
85 </configuration>
86 </plugin>
87
st782sb54df0d2017-05-04 07:48:42 -040088 </plugins>
hb123fa70761c2019-03-20 12:20:44 -040089
st782sb54df0d2017-05-04 07:48:42 -040090 <testResources>
91 <testResource>
92 <directory>src/test/java</directory>
93 <includes>
94 <include>**/*Test*.*</include>
95 </includes>
96 </testResource>
97 </testResources>
98
99 <resources>
100 <resource>
101 <directory>src/main/resources</directory>
102 <includes>
103 <include>**/*</include>
104 </includes>
105 </resource>
106 <!-- picks up the applicationcodes.properties file presented in \src\
107 path -->
108 <resource>
109 <directory>src/main/java</directory>
110 <includes>
111 <include>**/*.xml</include>
112 <include>**/*.properties</include>
113 </includes>
114 </resource>
115 </resources>
116
117 </build>
118
119 <dependencies>
hb123fa70761c2019-03-20 12:20:44 -0400120 <dependency>
121 <groupId>org.onap.aaf.authz</groupId>
122 <artifactId>aaf-cadi-aaf</artifactId>
123 <version>2.1.7</version>
124 <exclusions>
125 <exclusion>
126 <groupId>gso</groupId>
127 <artifactId>GLCookieDecryption</artifactId>
128 </exclusion>
129 </exclusions>
130 </dependency>
131 <dependency>
132 <groupId>org.onap.aaf.authz</groupId>
133 <artifactId>aaf-cadi-core</artifactId>
134 <version>2.1.7</version>
135 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400136 <dependency>
137 <groupId>com.att.eelf</groupId>
138 <artifactId>eelf-core</artifactId>
Dominik Mizyn224909a2019-10-24 15:03:21 +0200139 <version>1.0.1-oss</version>
st782sb54df0d2017-05-04 07:48:42 -0400140 </dependency>
141 <dependency>
142 <groupId>com.google.code.gson</groupId>
143 <artifactId>gson</artifactId>
144 <version>2.5</version>
145 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400146 <!-- Spring -->
147 <dependency>
148 <groupId>org.springframework</groupId>
149 <artifactId>spring-core</artifactId>
150 <version>${springframework.version}</version>
151 </dependency>
152 <dependency>
153 <groupId>org.springframework</groupId>
154 <artifactId>spring-web</artifactId>
155 <version>${springframework.version}</version>
156 </dependency>
157 <dependency>
158 <groupId>org.springframework</groupId>
159 <artifactId>spring-webmvc</artifactId>
160 <version>${springframework.version}</version>
161 </dependency>
162 <dependency>
163 <groupId>org.springframework</groupId>
164 <artifactId>spring-tx</artifactId>
165 <version>${springframework.version}</version>
166 </dependency>
167 <dependency>
168 <groupId>org.springframework</groupId>
169 <artifactId>spring-context-support</artifactId>
170 <version>${springframework.version}</version>
171 </dependency>
172 <dependency>
173 <groupId>org.springframework</groupId>
174 <artifactId>spring-orm</artifactId>
175 <version>${springframework.version}</version>
176 </dependency>
177 <dependency>
178 <groupId>org.springframework</groupId>
179 <artifactId>spring-test</artifactId>
180 <version>${springframework.version}</version>
181 </dependency>
182 <dependency>
Dominik Mizyn374a7dd2019-07-12 16:12:19 +0200183 <groupId>javax.xml.bind</groupId>
184 <artifactId>jaxb-api</artifactId>
185 <version>2.4.0-b180830.0359</version>
186 </dependency>
jz385pcfc431e2020-06-03 12:50:14 +0530187
st782sb54df0d2017-05-04 07:48:42 -0400188 <!-- Hibernate -->
189 <dependency>
190 <groupId>org.hibernate</groupId>
191 <artifactId>hibernate-core</artifactId>
192 <version>${hibernate.version}</version>
193 </dependency>
194 <dependency>
195 <groupId>org.hibernate</groupId>
196 <artifactId>hibernate-validator</artifactId>
Dominik Mizyn224909a2019-10-24 15:03:21 +0200197 <version>6.0.17.Final</version>
st782sb54df0d2017-05-04 07:48:42 -0400198 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400199 <!-- hibernate-core depends on dom4j, which has optional dependencies.
200 On jenkins, contrary to doc, mvn 3.0.5 packages the optional dependencies
201 in the war. Workaround: exclude them explicitly. -->
202 <dependency>
203 <groupId>dom4j</groupId>
204 <artifactId>dom4j</artifactId>
205 <version>1.6.1</version>
206 <exclusions>
207 <exclusion>
208 <groupId>jaxme</groupId>
209 <artifactId>jaxme-api</artifactId>
210 </exclusion>
211 <exclusion>
212 <groupId>jaxen</groupId>
213 <artifactId>jaxen</artifactId>
214 </exclusion>
215 <exclusion>
216 <groupId>msv</groupId>
217 <artifactId>xsdlib</artifactId>
218 </exclusion>
219 <exclusion>
220 <groupId>msv</groupId>
221 <artifactId>relaxngDatatype</artifactId>
222 </exclusion>
223 <exclusion>
224 <groupId>pull-parser</groupId>
225 <artifactId>pull-parser</artifactId>
226 </exclusion>
227 <exclusion>
228 <groupId>xpp3</groupId>
229 <artifactId>xpp3</artifactId>
230 </exclusion>
231 <exclusion>
232 <groupId>stax</groupId>
233 <artifactId>stax-api</artifactId>
234 </exclusion>
235 </exclusions>
236 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400237 <!-- Servlet+JSP+JSTL -->
238 <dependency>
239 <groupId>javax.servlet</groupId>
240 <artifactId>javax.servlet-api</artifactId>
241 <version>3.1.0</version>
242 </dependency>
243 <dependency>
244 <groupId>javax.servlet.jsp</groupId>
245 <artifactId>javax.servlet.jsp-api</artifactId>
246 <version>2.3.1</version>
247 </dependency>
248 <dependency>
GUJJA13769512018-02-16 11:45:40 -0500249 <groupId>org.apache.taglibs</groupId>
250 <artifactId>taglibs-standard-spec</artifactId>
251 <version>1.2.5</version>
252 </dependency>
253 <dependency>
254 <groupId>org.apache.taglibs</groupId>
255 <artifactId>taglibs-standard-impl</artifactId>
256 <version>1.2.5</version>
257 </dependency>
258 <dependency>
259 <groupId>org.apache.taglibs</groupId>
260 <artifactId>taglibs-standard-jstlel</artifactId>
261 <version>1.2.5</version>
st782sb54df0d2017-05-04 07:48:42 -0400262 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400263 <!-- Apache Tiles -->
264 <dependency>
265 <groupId>org.apache.tiles</groupId>
266 <artifactId>tiles-core</artifactId>
267 <version>3.0.5</version>
268 </dependency>
269 <dependency>
270 <groupId>org.apache.tiles</groupId>
271 <artifactId>tiles-jsp</artifactId>
272 <version>3.0.5</version>
273 </dependency>
274 <dependency>
275 <groupId>org.apache.cxf</groupId>
276 <artifactId>cxf-rt-rs-client</artifactId>
jz385pb5a15c32020-04-23 16:35:12 +0530277 <version>3.3.4</version>
st782sb54df0d2017-05-04 07:48:42 -0400278 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400279 <!-- Mapper -->
280 <dependency>
281 <groupId>com.fasterxml.jackson.core</groupId>
282 <artifactId>jackson-annotations</artifactId>
jz385pcfc431e2020-06-03 12:50:14 +0530283 <version>2.10.0</version>
st782sb54df0d2017-05-04 07:48:42 -0400284 </dependency>
285 <dependency>
286 <groupId>com.fasterxml.jackson.core</groupId>
287 <artifactId>jackson-core</artifactId>
jz385pcfc431e2020-06-03 12:50:14 +0530288 <version>2.10.0</version>
st782sb54df0d2017-05-04 07:48:42 -0400289 </dependency>
290 <dependency>
291 <groupId>com.fasterxml.jackson.core</groupId>
292 <artifactId>jackson-databind</artifactId>
jz385pcfc431e2020-06-03 12:50:14 +0530293 <version>2.10.0</version>
st782sb54df0d2017-05-04 07:48:42 -0400294 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400295 <dependency>
296 <groupId>postgresql</groupId>
297 <artifactId>postgresql</artifactId>
298 <version>9.1-901-1.jdbc4</version>
299 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400300 <!-- Elastic Search -->
301 <dependency>
302 <groupId>org.elasticsearch</groupId>
303 <artifactId>elasticsearch</artifactId>
Dominik Mizyn224909a2019-10-24 15:03:21 +0200304 <version>7.4.1</version>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400305 <exclusions>
306 <exclusion>
307 <groupId>org.apache.lucene</groupId>
308 <artifactId>lucene-queryparser</artifactId>
309 </exclusion>
310 </exclusions>
st782sb54df0d2017-05-04 07:48:42 -0400311 </dependency>
312 <dependency>
313 <groupId>io.searchbox</groupId>
314 <artifactId>jest</artifactId>
Dominik Mizyn606a1242019-10-18 12:26:57 +0200315 <version>5.3.2</version>
st782sb54df0d2017-05-04 07:48:42 -0400316 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400317 <dependency>
318 <groupId>org.apache.jcs</groupId>
319 <artifactId>jcs</artifactId>
320 <version>1.3</version>
321 <exclusions>
322 <exclusion>
323 <groupId>*</groupId>
324 <artifactId>*</artifactId>
325 </exclusion>
326 </exclusions>
st782sb54df0d2017-05-04 07:48:42 -0400327 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400328 <dependency>
329 <groupId>org.apache.tomcat</groupId>
330 <artifactId>tomcat-websocket</artifactId>
Dominik Mizyn224909a2019-10-24 15:03:21 +0200331 <version>9.0.27</version>
st782sb54df0d2017-05-04 07:48:42 -0400332 <scope>provided</scope>
333 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400334 <dependency>
335 <groupId>concurrent</groupId>
336 <artifactId>concurrent</artifactId>
337 <version>1.3.2</version>
338 <exclusions>
339 <exclusion>
340 <groupId>*</groupId>
341 <artifactId>*</artifactId>
342 </exclusion>
343 </exclusions>
344 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400345 <dependency>
346 <groupId>commons-lang</groupId>
347 <artifactId>commons-lang</artifactId>
348 <version>2.6</version>
349 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400350 <!-- for generating excel/csv/excelx -->
351 <dependency>
352 <groupId>org.apache.poi</groupId>
353 <artifactId>poi</artifactId>
Dominik Mizyn224909a2019-10-24 15:03:21 +0200354 <version>4.1.1</version>
st782sb54df0d2017-05-04 07:48:42 -0400355 <exclusions>
356 <exclusion>
357 <groupId>commons-logging</groupId>
358 <artifactId>commons-logging</artifactId>
359 </exclusion>
360 <exclusion>
361 <groupId>log4j</groupId>
362 <artifactId>log4j</artifactId>
363 </exclusion>
364 </exclusions>
365 </dependency>
366 <dependency>
367 <groupId>org.apache.poi</groupId>
368 <artifactId>poi-ooxml</artifactId>
Dominik Mizyn606a1242019-10-18 12:26:57 +0200369 <version>3.17</version>
st782sb54df0d2017-05-04 07:48:42 -0400370 <exclusions>
371 <exclusion>
372 <groupId>commons-logging</groupId>
373 <artifactId>commons-logging</artifactId>
374 </exclusion>
375 <exclusion>
376 <groupId>log4j</groupId>
377 <artifactId>log4j</artifactId>
378 </exclusion>
379 </exclusions>
380 </dependency>
381 <dependency>
382 <groupId>org.apache.poi</groupId>
383 <artifactId>poi-scratchpad</artifactId>
Dominik Mizyn224909a2019-10-24 15:03:21 +0200384 <version>4.1.1</version>
st782sb54df0d2017-05-04 07:48:42 -0400385 <exclusions>
386 <exclusion>
387 <groupId>commons-logging</groupId>
388 <artifactId>commons-logging</artifactId>
389 </exclusion>
390 <exclusion>
391 <groupId>log4j</groupId>
392 <artifactId>log4j</artifactId>
393 </exclusion>
394 </exclusions>
395 </dependency>
396 <dependency>
397 <groupId>org.apache.poi</groupId>
398 <artifactId>poi-contrib</artifactId>
399 <version>3.5-FINAL</version>
400 <exclusions>
401 <exclusion>
402 <groupId>commons-logging</groupId>
403 <artifactId>commons-logging</artifactId>
404 </exclusion>
405 <exclusion>
406 <groupId>log4j</groupId>
407 <artifactId>log4j</artifactId>
408 </exclusion>
409 </exclusions>
410 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400411 <!-- Quartz -->
412 <dependency>
413 <groupId>org.quartz-scheduler</groupId>
414 <artifactId>quartz</artifactId>
Sudarshan Kumar8e83c252020-02-18 16:16:26 +0530415 <version>2.3.2</version>
st782sb54df0d2017-05-04 07:48:42 -0400416 <exclusions>
417 <!-- SDK brings a new version of c3p0 -->
418 <exclusion>
419 <groupId>c3p0</groupId>
420 <artifactId>c3p0</artifactId>
421 </exclusion>
422 </exclusions>
423 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400424 <dependency>
425 <groupId>org.bouncycastle</groupId>
GUJJA13769512018-02-16 11:45:40 -0500426 <artifactId>bcprov-jdk15on</artifactId>
Dominik Mizyn224909a2019-10-24 15:03:21 +0200427 <version>1.64</version>
st782sb54df0d2017-05-04 07:48:42 -0400428 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400429 <dependency>
430 <groupId>commons-codec</groupId>
431 <artifactId>commons-codec</artifactId>
432 <version>1.9</version>
433 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400434 <dependency>
435 <groupId>com.att.nsa</groupId>
436 <artifactId>cambriaClient</artifactId>
437 <version>0.0.1</version>
438 <exclusions>
439 <exclusion>
440 <groupId>commons-logging</groupId>
441 <artifactId>commons-logging</artifactId>
442 </exclusion>
443 <exclusion>
444 <groupId>log4j</groupId>
445 <artifactId>log4j</artifactId>
446 </exclusion>
447 <exclusion>
448 <groupId>log4j</groupId>
449 <artifactId>apache-log4j-extras</artifactId>
450 </exclusion>
451 <exclusion>
452 <groupId>org.slf4j</groupId>
453 <artifactId>slf4j-log4j12</artifactId>
454 </exclusion>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400455 <exclusion>
456 <groupId>org.apache.httpcomponents</groupId>
457 <artifactId>httpclient</artifactId>
458 </exclusion>
st782sb54df0d2017-05-04 07:48:42 -0400459 </exclusions>
460 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400461 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400462 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400463 <artifactId>epsdk-fw</artifactId>
464 <version>${epsdk.version}</version>
465 <exclusions>
466 <exclusion>
467 <groupId>commons-logging</groupId>
468 <artifactId>commons-logging</artifactId>
469 </exclusion>
470 <exclusion>
471 <groupId>log4j</groupId>
472 <artifactId>log4j</artifactId>
473 </exclusion>
474 <exclusion>
475 <groupId>log4j</groupId>
476 <artifactId>apache-log4j-extras</artifactId>
477 </exclusion>
478 <exclusion>
479 <groupId>org.slf4j</groupId>
480 <artifactId>slf4j-log4j12</artifactId>
481 </exclusion>
482 </exclusions>
483 </dependency>
484 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400485 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400486 <artifactId>epsdk-core</artifactId>
487 <version>${epsdk.version}</version>
488 <exclusions>
489 <exclusion>
490 <groupId>mysql</groupId>
491 <artifactId>mysql-connector-java</artifactId>
492 </exclusion>
493 </exclusions>
494 </dependency>
495 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400496 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400497 <artifactId>epsdk-app-common</artifactId>
498 <version>${epsdk.version}</version>
kg811t3aa28e92018-02-08 13:25:08 -0500499 <exclusions>
500 <exclusion>
501 <groupId>commons-beanutils</groupId>
502 <artifactId>commons-beanutils-core</artifactId>
503 </exclusion>
504 </exclusions>
st782sb54df0d2017-05-04 07:48:42 -0400505 </dependency>
506 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400507 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400508 <artifactId>epsdk-workflow</artifactId>
509 <version>${epsdk.version}</version>
510 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400511 <!-- Raptor required Libraries -->
512 <!-- for static charts -->
513 <dependency>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -0400514 <groupId>org.onap.portal.sdk</groupId>
st782sb54df0d2017-05-04 07:48:42 -0400515 <artifactId>epsdk-analytics</artifactId>
516 <version>${epsdk.version}</version>
517 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400518 <!-- Referenced by some poms and needed for testing; do NOT use "test"
519 scope here. -->
520 <dependency>
521 <groupId>org.apache.httpcomponents</groupId>
522 <artifactId>httpclient</artifactId>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400523 <version>4.5.3</version>
st782sb54df0d2017-05-04 07:48:42 -0400524 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400525 <!-- for testing -->
526 <dependency>
527 <groupId>junit</groupId>
528 <artifactId>junit</artifactId>
529 <version>4.11</version>
530 <scope>test</scope>
531 </dependency>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -0400532 <dependency>
533 <groupId>org.powermock</groupId>
534 <artifactId>powermock-api-mockito</artifactId>
535 <version>1.6.1</version>
536 </dependency>
537 <dependency>
538 <groupId>org.powermock</groupId>
539 <artifactId>powermock-core</artifactId>
540 <version>1.6.1</version>
541 </dependency>
542 <dependency>
543 <groupId>org.powermock</groupId>
544 <artifactId>powermock-module-junit4</artifactId>
545 <version>1.6.1</version>
546 </dependency>
547 <dependency>
548 <groupId>org.mockito</groupId>
549 <artifactId>mockito-core</artifactId>
550 <version>1.8.5</version>
551 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400552 <dependency>
553 <groupId>commons-beanutils</groupId>
554 <artifactId>commons-beanutils</artifactId>
Dominik Mizyn606a1242019-10-18 12:26:57 +0200555 <version>1.9.4</version>
st782sb54df0d2017-05-04 07:48:42 -0400556 </dependency>
Sudarshan Kumar8e83c252020-02-18 16:16:26 +0530557 <!-- <dependency>
st782sb54df0d2017-05-04 07:48:42 -0400558 <groupId>com.ecwid.consul</groupId>
559 <artifactId>consul-api</artifactId>
Dominik Mizyn606a1242019-10-18 12:26:57 +0200560 <version>1.3.0</version>
st782sb54df0d2017-05-04 07:48:42 -0400561 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400562 <dependency>
563 <groupId>com.orbitz.consul</groupId>
564 <artifactId>consul-client</artifactId>
Dominik Mizyn224909a2019-10-24 15:03:21 +0200565 <version>1.3.9</version>
Sudarshan Kumar8e83c252020-02-18 16:16:26 +0530566 </dependency> -->
st782sb54df0d2017-05-04 07:48:42 -0400567 <dependency>
568 <groupId>commons-fileupload</groupId>
569 <artifactId>commons-fileupload</artifactId>
Gujjafadf84a2018-03-01 15:57:55 -0500570 <version>1.3.3</version>
st782sb54df0d2017-05-04 07:48:42 -0400571 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400572 <dependency>
573 <groupId>io.springfox</groupId>
574 <artifactId>springfox-swagger2</artifactId>
Sudarshan Kumar8e83c252020-02-18 16:16:26 +0530575 <version>2.9.2</version>
st782sb54df0d2017-05-04 07:48:42 -0400576 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400577 <dependency>
578 <groupId>io.springfox</groupId>
579 <artifactId>springfox-swagger-ui</artifactId>
Sudarshan Kumar8e83c252020-02-18 16:16:26 +0530580 <version>2.9.2</version>
st782sb54df0d2017-05-04 07:48:42 -0400581 </dependency>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -0400582 <!-- Schedulers required Libraries -->
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -0400583 <dependency>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400584 <groupId>com.googlecode.json-simple</groupId>
585 <artifactId>json-simple</artifactId>
586 <version>1.1.1</version>
587 </dependency>
588 <dependency>
589 <groupId>org.glassfish.jersey.core</groupId>
590 <artifactId>jersey-client</artifactId>
591 <version>2.23.1</version>
592 </dependency>
593 <dependency>
594 <groupId>com.fasterxml.jackson.jaxrs</groupId>
595 <artifactId>jackson-jaxrs-json-provider</artifactId>
Dominik Mizyn606a1242019-10-18 12:26:57 +0200596 <version>2.10.0</version>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400597 </dependency>
Dominik Mizyn224909a2019-10-24 15:03:21 +0200598 <!-- https://mvnrepository.com/artifact/org.glassfish/javax.el -->
Dominik Mizyn1f4d9362019-05-30 10:47:56 +0200599 <dependency>
Dominik Mizyn224909a2019-10-24 15:03:21 +0200600 <groupId>org.glassfish</groupId>
Dominik Mizyn1f4d9362019-05-30 10:47:56 +0200601 <artifactId>javax.el</artifactId>
Dominik Mizyn224909a2019-10-24 15:03:21 +0200602 <version>3.0.0</version>
Dominik Mizyn1f4d9362019-05-30 10:47:56 +0200603 </dependency>
604 <!-- https://mvnrepository.com/artifact/javax.el/el-api -->
605 <dependency>
606 <groupId>javax.el</groupId>
Dominik Mizyn224909a2019-10-24 15:03:21 +0200607 <artifactId>javax.el-api</artifactId>
608 <version>3.0.0</version>
Dominik Mizyn1f4d9362019-05-30 10:47:56 +0200609 </dependency>
610 <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
611 <dependency>
612 <groupId>org.jsoup</groupId>
613 <artifactId>jsoup</artifactId>
614 <version>1.12.1</version>
615 </dependency>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400616 <dependency>
617 <groupId>org.glassfish.jersey.connectors</groupId>
618 <artifactId>jersey-jetty-connector</artifactId>
Dominik Mizyn224909a2019-10-24 15:03:21 +0200619 <version>2.29.1</version>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -0400620 </dependency>
Christopher Lott (cl778h)b6079b32017-10-04 14:14:36 -0400621 <!-- Jacoco for offline instrumentation -->
622 <dependency>
623 <groupId>org.jacoco</groupId>
624 <artifactId>org.jacoco.agent</artifactId>
625 <version>${jacocoVersion}</version>
626 <classifier>runtime</classifier>
627 </dependency>
st782s21a87612018-01-30 17:29:36 -0500628 <dependency>
629 <groupId>org.owasp.esapi</groupId>
630 <artifactId>esapi</artifactId>
Dominik Mizyn606a1242019-10-18 12:26:57 +0200631 <version>2.2.0.0</version>
kg811t3aa28e92018-02-08 13:25:08 -0500632 <exclusions>
633 <exclusion>
634 <groupId>commons-beanutils</groupId>
635 <artifactId>commons-beanutils-core</artifactId>
636 </exclusion>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400637 <exclusion>
638 <groupId>commons-httpclient</groupId>
639 <artifactId>commons-httpclient</artifactId>
640 </exclusion>
sa282w78224cb2018-03-30 14:09:40 -0400641 <exclusion>
642 <groupId>org.beanshell</groupId>
643 <artifactId>bsh-core</artifactId>
644 </exclusion>
kg811t3aa28e92018-02-08 13:25:08 -0500645 </exclusions>
st782s21a87612018-01-30 17:29:36 -0500646 </dependency>
647 <dependency>
648 <groupId>org.springframework.security</groupId>
649 <artifactId>spring-security-core</artifactId>
stattaa3a04c52019-08-23 16:49:45 -0400650 <version>${springframework.security.version}</version>
st782s21a87612018-01-30 17:29:36 -0500651 </dependency>
652 <dependency>
653 <groupId>org.springframework.security</groupId>
654 <artifactId>spring-security-web</artifactId>
stattaa3a04c52019-08-23 16:49:45 -0400655 <version>${springframework.security.version}</version>
st782s21a87612018-01-30 17:29:36 -0500656 </dependency>
657 <dependency>
658 <groupId>org.springframework.security</groupId>
659 <artifactId>spring-security-config</artifactId>
stattaa3a04c52019-08-23 16:49:45 -0400660 <version>${springframework.security.version}</version>
st782s21a87612018-01-30 17:29:36 -0500661 </dependency>
Gujjafadf84a2018-03-01 15:57:55 -0500662 <dependency>
Gujjafadf84a2018-03-01 15:57:55 -0500663 <groupId>com.thoughtworks.xstream</groupId>
664 <artifactId>xstream</artifactId>
Dominik Mizyn224909a2019-10-24 15:03:21 +0200665 <version>1.4.11.1</version>
Gujjafadf84a2018-03-01 15:57:55 -0500666 </dependency>
667 <dependency>
Gujjafadf84a2018-03-01 15:57:55 -0500668 <groupId>ch.qos.logback</groupId>
669 <artifactId>logback-core</artifactId>
670 <version>1.2.3</version>
671 </dependency>
672 <dependency>
673 <groupId>ch.qos.logback</groupId>
674 <artifactId>logback-classic</artifactId>
675 <version>1.2.3</version>
676 </dependency>
Kishore Reddy, Gujja (kg811t)4ee89672018-03-20 17:15:25 -0400677 <dependency>
678 <groupId>commons-collections</groupId>
679 <artifactId>commons-collections</artifactId>
680 <version>3.2.2</version>
681 </dependency>
682 <dependency>
683 <groupId>xalan</groupId>
684 <artifactId>xalan</artifactId>
685 <version>2.7.2</version>
686 </dependency>
Kishore Reddy, Gujja (kg811t)28459102018-05-14 17:19:51 -0400687 <!-- Music -->
688 <dependency>
689 <groupId>org.onap.music</groupId>
690 <artifactId>MUSIC</artifactId>
Welch, Lorraine (lb2391)9306dd82019-09-25 14:24:27 -0400691 <version>2.5.10</version>
Kishore Reddy, Gujja (kg811t)28459102018-05-14 17:19:51 -0400692 <exclusions>
693 <exclusion>
694 <groupId>com.sun.jersey</groupId>
695 <artifactId>jersey-client</artifactId>
696 </exclusion>
697 <exclusion>
698 <groupId>com.sun.jersey</groupId>
699 <artifactId>jersey-server</artifactId>
700 </exclusion>
701 <exclusion>
702 <groupId>com.sun.jersey</groupId>
703 <artifactId>jersey-json</artifactId>
704 </exclusion><exclusion>
705 <groupId>com.sun.jersey</groupId>
706 <artifactId>jersey-servlet</artifactId>
707 </exclusion>
708 </exclusions>
709 </dependency>
710
711 <dependency>
712 <groupId>org.onap.portal.sdk</groupId>
713 <artifactId>epsdk-music</artifactId>
714 <version>${epsdk.version}</version>
715
716 <exclusions>
717 <exclusion>
718 <groupId>com.sun.jersey</groupId>
719 <artifactId>jersey-client</artifactId>
720 </exclusion>
721 <exclusion>
722 <groupId>com.sun.jersey</groupId>
723 <artifactId>jersey-server</artifactId>
724 </exclusion>
725 <exclusion>
726 <groupId>com.sun.jersey</groupId>
727 <artifactId>jersey-json</artifactId>
728 </exclusion><exclusion>
729 <groupId>com.sun.jersey</groupId>
730 <artifactId>jersey-servlet</artifactId>
731 </exclusion>
732 </exclusions>
Kishore Reddy, Gujja (kg811t)28459102018-05-14 17:19:51 -0400733 </dependency>
shentao9997c291e02019-04-02 10:18:24 +0800734 <dependency>
735 <groupId>org.projectlombok</groupId>
736 <artifactId>lombok</artifactId>
737 <version>1.18.4</version>
738 </dependency>
739
740 <dependency>
741 <groupId>com.alibaba</groupId>
742 <artifactId>fastjson</artifactId>
Dominik Mizyn224909a2019-10-24 15:03:21 +0200743 <version>1.2.62</version>
shentao9997c291e02019-04-02 10:18:24 +0800744 </dependency>
st782sb54df0d2017-05-04 07:48:42 -0400745 </dependencies>
st782sb54df0d2017-05-04 07:48:42 -0400746
st782sb54df0d2017-05-04 07:48:42 -0400747</project>