Fixed health check issue
[portal.git] / ecomp-portal-BE-common / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5
6         <parent>
7                 <groupId>org.onap.portal</groupId>
8                 <artifactId>onap-portal-parent</artifactId>
9                 <version>3.5.0</version>
10         </parent>
11
12         <artifactId>portal-be-common</artifactId>
13         <packaging>war</packaging>
14
15         <properties>
16                 <skipTests>false</skipTests>
17                 <jackson.version>2.11.0</jackson.version>
18         </properties>
19
20         <build>
21                 <!-- The war file name carries no version number -->
22                 <finalName>${project.artifactId}</finalName>
23
24                 <plugins>
25                         <!-- Generate javadoc jar; see profile for Java 8 -->
26                         <plugin>
27                                 <groupId>org.apache.maven.plugins</groupId>
28                                 <artifactId>maven-javadoc-plugin</artifactId>
29                                 <version>3.0.0-M1</version>
30                                 <executions>
31                                         <execution>
32                                                 <id>attach-javadocs</id>
33                                                 <goals>
34                                                         <goal>jar</goal>
35                                                 </goals>
36                                         </execution>
37                                 </executions>
38                         </plugin>
39
40                         <!-- Generate source jar -->
41                         <plugin>
42                                 <groupId>org.apache.maven.plugins</groupId>
43                                 <artifactId>maven-source-plugin</artifactId>
44                                 <version>3.0.0</version>
45                                 <executions>
46                                         <execution>
47                                                 <id>attach-sources</id>
48                                                 <goals>
49                                                         <goal>jar</goal>
50                                                 </goals>
51                                         </execution>
52                                 </executions>
53                         </plugin>
54
55                         <plugin>
56                                 <groupId>org.apache.maven.plugins</groupId>
57                                 <artifactId>maven-jar-plugin</artifactId>
58                                 <version>3.0.0</version>
59                                 <executions>
60                                         <execution>
61                                                 <goals>
62                                                         <goal>test-jar</goal>
63                                                 </goals>
64                                         </execution>
65                                 </executions>
66                         </plugin>
67
68                         <plugin>
69                                 <groupId>org.apache.maven.plugins</groupId>
70                                 <artifactId>maven-war-plugin</artifactId>
71                                 <version>3.0.0</version>
72                                 <configuration>
73                                         <!-- Build a jar with all the Java classes -->
74                                         <attachClasses>true</attachClasses>
75                                         <!-- Do not put any jars in the war -->
76                                         <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
77                                 </configuration>
78                         </plugin>
79
80                         <!-- No deployment step for this project -->
81                         <plugin>
82                                 <groupId>org.apache.maven.plugins</groupId>
83                                 <artifactId>maven-deploy-plugin</artifactId>
84                                 <version>2.8</version>
85                                 <configuration>
86                                         <skip>true</skip>
87                                 </configuration>
88                         </plugin>
89
90                 </plugins>
91
92                 <testResources>
93                         <testResource>
94                                 <directory>src/test/java</directory>
95                                 <includes>
96                                         <include>**/*Test*.*</include>
97                                 </includes>
98                         </testResource>
99                 </testResources>
100
101                 <resources>
102                         <resource>
103                                 <directory>src/main/resources</directory>
104                                 <includes>
105                                         <include>**/*</include>
106                                 </includes>
107                         </resource>
108                         <!-- picks up the applicationcodes.properties file presented in \src\ 
109                                 path -->
110                         <resource>
111                                 <directory>src/main/java</directory>
112                                 <includes>
113                                         <include>**/*.xml</include>
114                                         <include>**/*.properties</include>
115                                 </includes>
116                         </resource>
117                 </resources>
118
119         </build>
120
121         <dependencies>
122                 <dependency>
123                         <groupId>org.onap.aaf.authz</groupId>
124                         <artifactId>aaf-cadi-aaf</artifactId>
125                         <version>2.1.7</version>
126                         <exclusions>
127                                 <exclusion>
128                                         <groupId>gso</groupId>
129                                         <artifactId>GLCookieDecryption</artifactId>
130                                 </exclusion>
131                         </exclusions>
132                 </dependency>
133                 <dependency>
134                         <groupId>org.onap.aaf.authz</groupId>
135                         <artifactId>aaf-cadi-core</artifactId>
136                         <version>2.1.7</version>
137                 </dependency>
138                 <dependency>
139                         <groupId>com.att.eelf</groupId>
140                         <artifactId>eelf-core</artifactId>
141                         <version>1.0.1-oss</version>
142                 </dependency>
143                 <dependency>
144                         <groupId>com.google.code.gson</groupId>
145                         <artifactId>gson</artifactId>
146                         <version>2.5</version>
147                 </dependency>
148                 <dependency>
149                         <groupId>com.google.guava</groupId>
150                         <artifactId>guava</artifactId>
151                         <version>19.0</version>
152                 </dependency>
153
154                 <!-- Spring -->
155                 <dependency>
156                         <groupId>org.springframework</groupId>
157                         <artifactId>spring-core</artifactId>
158                         <version>${springframework.version}</version>
159                 </dependency>
160                 <dependency>
161                         <groupId>org.springframework</groupId>
162                         <artifactId>spring-web</artifactId>
163                         <version>${springframework.version}</version>
164                 </dependency>
165                 <dependency>
166                         <groupId>org.springframework</groupId>
167                         <artifactId>spring-webmvc</artifactId>
168                         <version>${springframework.version}</version>
169                 </dependency>
170                 <dependency>
171                         <groupId>org.springframework</groupId>
172                         <artifactId>spring-tx</artifactId>
173                         <version>${springframework.version}</version>
174                 </dependency>
175                 <dependency>
176                         <groupId>org.springframework</groupId>
177                         <artifactId>spring-context-support</artifactId>
178                         <version>${springframework.version}</version>
179                 </dependency>
180                 <dependency>
181                         <groupId>org.springframework</groupId>
182                         <artifactId>spring-orm</artifactId>
183                         <version>${springframework.version}</version>
184                 </dependency>
185                 <dependency>
186                         <groupId>org.springframework</groupId>
187                         <artifactId>spring-test</artifactId>
188                         <version>${springframework.version}</version>
189                 </dependency>
190                 <dependency>
191                         <groupId>javax.xml.bind</groupId>
192                         <artifactId>jaxb-api</artifactId>
193                         <version>2.4.0-b180830.0359</version>
194                 </dependency>
195
196                 <!-- Hibernate -->
197                 <dependency>
198                         <groupId>org.hibernate</groupId>
199                         <artifactId>hibernate-core</artifactId>
200                         <version>${hibernate.version}</version>
201                 </dependency>
202                 <dependency>
203                         <groupId>org.hibernate</groupId>
204                         <artifactId>hibernate-validator</artifactId>
205                         <version>6.0.17.Final</version>
206                 </dependency>
207                 <!-- hibernate-core depends on dom4j, which has optional dependencies. 
208                         On jenkins, contrary to doc, mvn 3.0.5 packages the optional dependencies 
209                         in the war. Workaround: exclude them explicitly. -->
210                 <dependency>
211                         <groupId>dom4j</groupId>
212                         <artifactId>dom4j</artifactId>
213                         <version>1.6.1</version>
214                         <exclusions>
215                                 <exclusion>
216                                         <groupId>jaxme</groupId>
217                                         <artifactId>jaxme-api</artifactId>
218                                 </exclusion>
219                                 <exclusion>
220                                         <groupId>jaxen</groupId>
221                                         <artifactId>jaxen</artifactId>
222                                 </exclusion>
223                                 <exclusion>
224                                         <groupId>msv</groupId>
225                                         <artifactId>xsdlib</artifactId>
226                                 </exclusion>
227                                 <exclusion>
228                                         <groupId>msv</groupId>
229                                         <artifactId>relaxngDatatype</artifactId>
230                                 </exclusion>
231                                 <exclusion>
232                                         <groupId>pull-parser</groupId>
233                                         <artifactId>pull-parser</artifactId>
234                                 </exclusion>
235                                 <exclusion>
236                                         <groupId>xpp3</groupId>
237                                         <artifactId>xpp3</artifactId>
238                                 </exclusion>
239                                 <exclusion>
240                                         <groupId>stax</groupId>
241                                         <artifactId>stax-api</artifactId>
242                                 </exclusion>
243                         </exclusions>
244                 </dependency>
245                 <!-- Servlet+JSP+JSTL -->
246                 <dependency>
247                         <groupId>javax.servlet</groupId>
248                         <artifactId>javax.servlet-api</artifactId>
249                         <version>3.1.0</version>
250                 </dependency>
251                 <dependency>
252                         <groupId>javax.servlet.jsp</groupId>
253                         <artifactId>javax.servlet.jsp-api</artifactId>
254                         <version>2.3.1</version>
255                 </dependency>
256                 <dependency>
257                         <groupId>org.apache.taglibs</groupId>
258                         <artifactId>taglibs-standard-spec</artifactId>
259                         <version>1.2.5</version>
260                 </dependency>
261                 <dependency>
262                         <groupId>org.apache.taglibs</groupId>
263                         <artifactId>taglibs-standard-impl</artifactId>
264                         <version>1.2.5</version>
265                 </dependency>
266                 <dependency>
267                         <groupId>org.apache.taglibs</groupId>
268                         <artifactId>taglibs-standard-jstlel</artifactId>
269                         <version>1.2.5</version>
270                 </dependency>
271                 <!-- Apache Tiles -->
272                 <dependency>
273                         <groupId>org.apache.tiles</groupId>
274                         <artifactId>tiles-core</artifactId>
275                         <version>3.0.5</version>
276                 </dependency>
277                 <dependency>
278                         <groupId>org.apache.tiles</groupId>
279                         <artifactId>tiles-jsp</artifactId>
280                         <version>3.0.5</version>
281                 </dependency>
282                 <dependency>
283                         <groupId>org.apache.cxf</groupId>
284                         <artifactId>cxf-rt-rs-client</artifactId>
285                         <version>3.3.4</version>
286                 </dependency>
287                 <!-- Mapper -->
288                 <dependency>
289                         <groupId>com.fasterxml.jackson.core</groupId>
290                         <artifactId>jackson-annotations</artifactId>
291                         <version>${jackson.version}</version>
292                 </dependency>
293                 <dependency>
294                         <groupId>com.fasterxml.jackson.core</groupId>
295                         <artifactId>jackson-core</artifactId>
296                         <version>${jackson.version}</version>
297                 </dependency>
298                 <dependency>
299                         <groupId>com.fasterxml.jackson.core</groupId>
300                         <artifactId>jackson-databind</artifactId>
301                         <version>${jackson.version}</version>
302                 </dependency>
303                 <dependency>
304                         <groupId>org.postgresql</groupId>
305                         <artifactId>postgresql</artifactId>
306                         <version>42.2.11</version>
307                 </dependency>
308                 <!-- Elastic Search -->
309                 <dependency>
310                         <groupId>org.elasticsearch</groupId>
311                         <artifactId>elasticsearch</artifactId>
312                         <version>7.6.1</version>
313                         <exclusions>
314                                 <exclusion>
315                                         <groupId>org.apache.lucene</groupId>
316                                         <artifactId>lucene-queryparser</artifactId>
317                                 </exclusion>
318                         </exclusions>
319                 </dependency>
320                 <dependency>
321                         <groupId>io.searchbox</groupId>
322                         <artifactId>jest</artifactId>
323                         <version>5.3.2</version>
324                 </dependency>
325                 <dependency>
326                         <groupId>org.apache.jcs</groupId>
327                         <artifactId>jcs</artifactId>
328                         <version>1.3</version>
329                         <exclusions>
330                                 <exclusion>
331                                         <groupId>*</groupId>
332                                         <artifactId>*</artifactId>
333                                 </exclusion>
334                         </exclusions>
335                 </dependency>
336                 <dependency>
337                         <groupId>org.apache.tomcat</groupId>
338                         <artifactId>tomcat-websocket</artifactId>
339                         <version>9.0.27</version>
340                         <scope>provided</scope>
341                 </dependency>
342                 
343                 <dependency>
344                         <groupId>concurrent</groupId>
345                         <artifactId>concurrent</artifactId>
346                         <version>1.3.2</version>
347                         <exclusions>
348                                 <exclusion>
349                                         <groupId>*</groupId>
350                                         <artifactId>*</artifactId>
351                                 </exclusion>
352                         </exclusions>
353                 </dependency>
354                 <dependency>
355                         <groupId>commons-lang</groupId>
356                         <artifactId>commons-lang</artifactId>
357                         <version>2.6</version>
358                 </dependency>
359                 <!-- for generating excel/csv/excelx -->
360                 <dependency>
361                         <groupId>org.apache.poi</groupId>
362                         <artifactId>poi</artifactId>
363                         <version>4.1.2</version>
364                         <exclusions>
365                                 <exclusion>
366                                         <groupId>commons-logging</groupId>
367                                         <artifactId>commons-logging</artifactId>
368                                 </exclusion>
369                                 <exclusion>
370                                         <groupId>log4j</groupId>
371                                         <artifactId>log4j</artifactId>
372                                 </exclusion>
373                         </exclusions>
374                 </dependency>
375                 <dependency>
376                         <groupId>org.apache.poi</groupId>
377                         <artifactId>poi-ooxml</artifactId>
378                         <version>4.1.2</version>
379                         <exclusions>
380                                 <exclusion>
381                                         <groupId>commons-logging</groupId>
382                                         <artifactId>commons-logging</artifactId>
383                                 </exclusion>
384                                 <exclusion>
385                                         <groupId>log4j</groupId>
386                                         <artifactId>log4j</artifactId>
387                                 </exclusion>
388                         </exclusions>
389                 </dependency>
390                 <dependency>
391                         <groupId>org.apache.poi</groupId>
392                         <artifactId>poi-scratchpad</artifactId>
393                         <version>4.1.2</version>
394                         <exclusions>
395                                 <exclusion>
396                                         <groupId>commons-logging</groupId>
397                                         <artifactId>commons-logging</artifactId>
398                                 </exclusion>
399                                 <exclusion>
400                                         <groupId>log4j</groupId>
401                                         <artifactId>log4j</artifactId>
402                                 </exclusion>
403                         </exclusions>
404                 </dependency>
405                 <dependency>
406                         <groupId>org.apache.poi</groupId>
407                         <artifactId>poi-contrib</artifactId>
408                         <version>3.5-FINAL</version>
409                         <exclusions>
410                                 <exclusion>
411                                         <groupId>commons-logging</groupId>
412                                         <artifactId>commons-logging</artifactId>
413                                 </exclusion>
414                                 <exclusion>
415                                         <groupId>log4j</groupId>
416                                         <artifactId>log4j</artifactId>
417                                 </exclusion>
418                         </exclusions>
419                 </dependency>
420                 <!-- Quartz -->
421                 <dependency>
422                         <groupId>org.quartz-scheduler</groupId>
423                         <artifactId>quartz</artifactId>
424                         <version>2.3.2</version>
425                         <exclusions>
426                                 <!-- SDK brings a new version of c3p0 -->
427                                 <exclusion>
428                                         <groupId>c3p0</groupId>
429                                         <artifactId>c3p0</artifactId>
430                                 </exclusion>
431                         </exclusions>
432                 </dependency>
433                 <dependency>
434                         <groupId>org.bouncycastle</groupId>
435                         <artifactId>bcprov-jdk15on</artifactId>
436                         <version>1.64</version>
437                 </dependency>
438                 <dependency>
439                         <groupId>commons-codec</groupId>
440                         <artifactId>commons-codec</artifactId>
441                         <version>1.15</version>
442                 </dependency>
443                 <dependency>
444                         <groupId>com.att.nsa</groupId>
445                         <artifactId>cambriaClient</artifactId>
446                         <version>0.0.1</version>
447                         <exclusions>
448                                 <exclusion>
449                                         <groupId>commons-logging</groupId>
450                                         <artifactId>commons-logging</artifactId>
451                                 </exclusion>
452                                 <exclusion>
453                                         <groupId>log4j</groupId>
454                                         <artifactId>log4j</artifactId>
455                                 </exclusion>
456                                 <exclusion>
457                                         <groupId>log4j</groupId>
458                                         <artifactId>apache-log4j-extras</artifactId>
459                                 </exclusion>
460                                 <exclusion>
461                                         <groupId>org.slf4j</groupId>
462                                         <artifactId>slf4j-log4j12</artifactId>
463                                 </exclusion>
464                                 <exclusion>
465                                         <groupId>org.apache.httpcomponents</groupId>
466                                         <artifactId>httpclient</artifactId>
467                                 </exclusion>
468                         </exclusions>
469                 </dependency>
470                 <dependency>
471                         <groupId>org.onap.portal.sdk</groupId>
472                         <artifactId>epsdk-fw</artifactId>
473                         <version>${epsdk.version}</version>
474                         <exclusions>
475                                 <exclusion>
476                                         <groupId>commons-logging</groupId>
477                                         <artifactId>commons-logging</artifactId>
478                                 </exclusion>
479                                 <exclusion>
480                                         <groupId>log4j</groupId>
481                                         <artifactId>log4j</artifactId>
482                                 </exclusion>
483                                 <exclusion>
484                                         <groupId>log4j</groupId>
485                                         <artifactId>apache-log4j-extras</artifactId>
486                                 </exclusion>
487                                 <exclusion>
488                                         <groupId>org.slf4j</groupId>
489                                         <artifactId>slf4j-log4j12</artifactId>
490                                 </exclusion>
491                         </exclusions>
492                 </dependency>
493                 <dependency>
494                         <groupId>org.onap.portal.sdk</groupId>
495                         <artifactId>epsdk-core</artifactId>
496                         <version>${epsdk.version}</version>
497                         <exclusions>
498                                 <exclusion>
499                                         <groupId>mysql</groupId>
500                                         <artifactId>mysql-connector-java</artifactId>
501                                 </exclusion>
502                         </exclusions>
503                 </dependency>
504                 <dependency>
505                         <groupId>org.onap.portal.sdk</groupId>
506                         <artifactId>epsdk-app-common</artifactId>
507                         <version>${epsdk.version}</version>
508                         <exclusions>
509                                 <exclusion>
510                                         <groupId>commons-beanutils</groupId>
511                                         <artifactId>commons-beanutils-core</artifactId>
512                                 </exclusion>
513                         </exclusions>
514                 </dependency>
515                 <dependency>
516                         <groupId>org.onap.portal.sdk</groupId>
517                         <artifactId>epsdk-workflow</artifactId>
518                         <version>${epsdk.version}</version>
519                 </dependency>
520                 <!-- Raptor required Libraries -->
521                 <!-- for static charts -->
522                 <dependency>
523                         <groupId>org.onap.portal.sdk</groupId>
524                         <artifactId>epsdk-analytics</artifactId>
525                         <version>${epsdk.version}</version>
526                 </dependency>
527                 <!-- Referenced by some poms and needed for testing; do NOT use "test" 
528                         scope here. -->
529                 <dependency>
530                         <groupId>org.apache.httpcomponents</groupId>
531                         <artifactId>httpclient</artifactId>
532                         <version>4.5.3</version>
533                 </dependency>
534                 <!-- for testing -->
535                 <dependency>
536                         <groupId>junit</groupId>
537                         <artifactId>junit</artifactId>
538                         <version>4.11</version>
539                         <scope>test</scope>
540                 </dependency>
541                 <dependency>
542                         <groupId>org.powermock</groupId>
543                         <artifactId>powermock-api-mockito</artifactId>
544                         <version>1.6.1</version>
545                 </dependency>
546                 <dependency>
547                         <groupId>org.powermock</groupId>
548                         <artifactId>powermock-core</artifactId>
549                         <version>1.6.1</version>
550                 </dependency>
551                 <dependency>
552                         <groupId>org.powermock</groupId>
553                         <artifactId>powermock-module-junit4</artifactId>
554                         <version>1.6.1</version>
555                 </dependency>
556                 <dependency>
557                         <groupId>org.mockito</groupId>
558                         <artifactId>mockito-core</artifactId>
559                         <version>1.8.5</version>
560                 </dependency>
561                 <dependency>
562                         <groupId>commons-beanutils</groupId>
563                         <artifactId>commons-beanutils</artifactId>
564                         <version>1.9.4</version>
565                 </dependency>
566                 <!-- <dependency> <groupId>com.ecwid.consul</groupId> <artifactId>consul-api</artifactId> 
567                         <version>1.3.0</version> </dependency> <dependency> <groupId>com.orbitz.consul</groupId> 
568                         <artifactId>consul-client</artifactId> <version>1.3.9</version> </dependency> -->
569                 <dependency>
570                         <groupId>commons-fileupload</groupId>
571                         <artifactId>commons-fileupload</artifactId>
572                         <version>1.4</version>
573                 </dependency>
574                 
575                 <!-- Schedulers required Libraries -->
576                 <dependency>
577                         <groupId>com.googlecode.json-simple</groupId>
578                         <artifactId>json-simple</artifactId>
579                         <version>1.1.1</version>
580                 </dependency>
581                 <dependency>
582                         <groupId>org.glassfish.jersey.core</groupId>
583                         <artifactId>jersey-client</artifactId>
584                         <version>2.23.1</version>
585                 </dependency>
586                 <dependency>
587                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
588                         <artifactId>jackson-jaxrs-json-provider</artifactId>
589                         <version>${jackson.version}</version>
590                 </dependency>
591                 <!-- https://mvnrepository.com/artifact/org.glassfish/javax.el -->
592                 <dependency>
593                         <groupId>org.glassfish</groupId>
594                         <artifactId>javax.el</artifactId>
595                         <version>3.0.0</version>
596                 </dependency>
597                 <!-- https://mvnrepository.com/artifact/javax.el/el-api -->
598                 <dependency>
599                         <groupId>javax.el</groupId>
600                         <artifactId>javax.el-api</artifactId>
601                         <version>3.0.0</version>
602                 </dependency>
603                 <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
604                 <dependency>
605                         <groupId>org.jsoup</groupId>
606                         <artifactId>jsoup</artifactId>
607                         <version>1.12.1</version>
608                 </dependency>
609                 <dependency>
610                         <groupId>org.glassfish.jersey.connectors</groupId>
611                         <artifactId>jersey-jetty-connector</artifactId>
612                         <version>2.29.1</version>
613                 </dependency>
614                 <!-- Jacoco for offline instrumentation -->
615                 <dependency>
616                         <groupId>org.jacoco</groupId>
617                         <artifactId>org.jacoco.agent</artifactId>
618                         <version>${jacocoVersion}</version>
619                         <classifier>runtime</classifier>
620                 </dependency>
621                 <dependency>
622                         <groupId>org.owasp.esapi</groupId>
623                         <artifactId>esapi</artifactId>
624                         <version>2.2.0.0</version>
625                         <exclusions>
626                                 <exclusion>
627                                         <groupId>commons-beanutils</groupId>
628                                         <artifactId>commons-beanutils-core</artifactId>
629                                 </exclusion>
630                                 <exclusion>
631                                         <groupId>commons-httpclient</groupId>
632                                         <artifactId>commons-httpclient</artifactId>
633                                 </exclusion>
634                                 <exclusion>
635                                         <groupId>org.beanshell</groupId>
636                                         <artifactId>bsh-core</artifactId>
637                                 </exclusion>
638                         </exclusions>
639                 </dependency>
640                 <dependency>
641                         <groupId>org.springframework.security</groupId>
642                         <artifactId>spring-security-core</artifactId>
643                         <version>${springframework.security.version}</version>
644                 </dependency>
645                 <dependency>
646                         <groupId>org.springframework.security</groupId>
647                         <artifactId>spring-security-web</artifactId>
648                         <version>${springframework.security.version}</version>
649                 </dependency>
650                 <dependency>
651                         <groupId>org.springframework.security</groupId>
652                         <artifactId>spring-security-config</artifactId>
653                         <version>${springframework.security.version}</version>
654                 </dependency>
655                 <dependency>
656                         <groupId>io.springfox</groupId>
657                         <artifactId>springfox-swagger2</artifactId>
658                         <version>3.0.0</version>
659                 </dependency>
660                 <dependency>
661                         <groupId>io.springfox</groupId>
662                         <artifactId>springfox-swagger-ui</artifactId>
663                         <version>3.0.0</version>
664                 </dependency>
665                 <dependency>
666                         <groupId>com.thoughtworks.xstream</groupId>
667                         <artifactId>xstream</artifactId>
668                         <version>1.4.11.1</version>
669                 </dependency>
670                 <dependency>
671                         <groupId>ch.qos.logback</groupId>
672                         <artifactId>logback-core</artifactId>
673                         <version>1.2.3</version>
674                 </dependency>
675                 <dependency>
676                         <groupId>ch.qos.logback</groupId>
677                         <artifactId>logback-classic</artifactId>
678                         <version>1.2.3</version>
679                 </dependency>
680                 <dependency>
681                         <groupId>commons-collections</groupId>
682                         <artifactId>commons-collections</artifactId>
683                         <version>3.2.2</version>
684                 </dependency>
685                 <dependency>
686                         <groupId>xalan</groupId>
687                         <artifactId>xalan</artifactId>
688                         <version>2.7.2</version>
689                 </dependency>
690                 <!-- Music -->
691                 <dependency>
692                         <groupId>org.onap.music</groupId>
693                         <artifactId>MUSIC</artifactId>
694                         <version>2.5.10</version>
695                         <exclusions>
696                                 <exclusion>
697                                         <groupId>com.sun.jersey</groupId>
698                                         <artifactId>jersey-client</artifactId>
699                                 </exclusion>
700                                 <exclusion>
701                                         <groupId>com.sun.jersey</groupId>
702                                         <artifactId>jersey-server</artifactId>
703                                 </exclusion>
704                                 <exclusion>
705                                         <groupId>com.sun.jersey</groupId>
706                                         <artifactId>jersey-json</artifactId>
707                                 </exclusion>
708                                 <exclusion>
709                                         <groupId>com.sun.jersey</groupId>
710                                         <artifactId>jersey-servlet</artifactId>
711                                 </exclusion>
712                         </exclusions>
713                 </dependency>
714
715                 <dependency>
716                         <groupId>org.onap.portal.sdk</groupId>
717                         <artifactId>epsdk-music</artifactId>
718                         <version>${epsdk.version}</version>
719
720                         <exclusions>
721                                 <exclusion>
722                                         <groupId>com.sun.jersey</groupId>
723                                         <artifactId>jersey-client</artifactId>
724                                 </exclusion>
725                                 <exclusion>
726                                         <groupId>com.sun.jersey</groupId>
727                                         <artifactId>jersey-server</artifactId>
728                                 </exclusion>
729                                 <exclusion>
730                                         <groupId>com.sun.jersey</groupId>
731                                         <artifactId>jersey-json</artifactId>
732                                 </exclusion>
733                                 <exclusion>
734                                         <groupId>com.sun.jersey</groupId>
735                                         <artifactId>jersey-servlet</artifactId>
736                                 </exclusion>
737                         </exclusions>
738                 </dependency>
739                 <dependency>
740                         <groupId>org.projectlombok</groupId>
741                         <artifactId>lombok</artifactId>
742                         <version>1.18.4</version>
743                 </dependency>
744
745                 <dependency>
746                         <groupId>com.alibaba</groupId>
747                         <artifactId>fastjson</artifactId>
748                         <version>1.2.62</version>
749                 </dependency>
750         </dependencies>
751
752 </project>