Application start up issue is fixed
[portal.git] / ecomp-portal-BE-common / pom.xml
1 <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>
4
5         <parent>
6                 <groupId>org.onap.portal</groupId>
7                 <artifactId>onap-portal-parent</artifactId>
8                 <version>3.4.0</version>
9         </parent>
10
11         <artifactId>portal-be-common</artifactId>
12         <packaging>war</packaging>
13
14         <properties>
15                 <skipTests>false</skipTests>
16         </properties>
17
18         <build>
19                 <!-- The war file name carries no version number -->
20                 <finalName>${project.artifactId}</finalName>
21
22                 <plugins>
23                         <!-- Generate javadoc jar; see profile for Java 8 -->
24                         <plugin>
25                                 <groupId>org.apache.maven.plugins</groupId>
26                                 <artifactId>maven-javadoc-plugin</artifactId>
27                                 <version>3.0.0-M1</version>
28                                 <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>
52                         
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>
65
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>
77
78                         <!-- 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
88                 </plugins>
89         
90                 <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>
120         <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>
136                 <dependency>
137                         <groupId>com.att.eelf</groupId>
138                         <artifactId>eelf-core</artifactId>
139                         <version>1.0.1-oss</version>
140                 </dependency>
141                 <dependency>
142                         <groupId>com.google.code.gson</groupId>
143                         <artifactId>gson</artifactId>
144                         <version>2.5</version>
145                 </dependency>
146                 <!-- 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>
183                         <groupId>javax.xml.bind</groupId>
184                         <artifactId>jaxb-api</artifactId>
185                         <version>2.4.0-b180830.0359</version>
186                 </dependency>
187                 
188                 <!-- 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>
197                         <version>6.0.17.Final</version>
198                 </dependency>
199                 <!-- 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>
237                 <!-- 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>
249                 <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>
262                 </dependency>
263                 <!-- 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>
277                         <version>3.3.4</version>
278                 </dependency>
279                 <!-- Mapper -->
280                 <dependency>
281                         <groupId>com.fasterxml.jackson.core</groupId>
282                         <artifactId>jackson-annotations</artifactId>
283                         <version>2.10.0</version>
284                 </dependency>
285                 <dependency>
286                         <groupId>com.fasterxml.jackson.core</groupId>
287                         <artifactId>jackson-core</artifactId>
288                         <version>2.10.0</version>
289                 </dependency>
290                 <dependency>
291                         <groupId>com.fasterxml.jackson.core</groupId>
292                         <artifactId>jackson-databind</artifactId>
293                         <version>2.10.0</version>
294                 </dependency>
295                 <dependency>
296                         <groupId>postgresql</groupId>
297                         <artifactId>postgresql</artifactId>
298                         <version>9.1-901-1.jdbc4</version>
299                 </dependency>
300                 <!-- Elastic Search -->
301                 <dependency>
302                         <groupId>org.elasticsearch</groupId>
303                         <artifactId>elasticsearch</artifactId>
304                         <version>7.4.1</version>
305                         <exclusions>
306                                 <exclusion>
307                                         <groupId>org.apache.lucene</groupId>
308                                         <artifactId>lucene-queryparser</artifactId>
309                                 </exclusion>
310                         </exclusions>
311                 </dependency>
312                 <dependency>
313                         <groupId>io.searchbox</groupId>
314                         <artifactId>jest</artifactId>
315                         <version>5.3.2</version>
316                 </dependency>
317                 <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>
327                 </dependency>
328                 <dependency>
329                         <groupId>org.apache.tomcat</groupId>
330                         <artifactId>tomcat-websocket</artifactId>
331                         <version>9.0.27</version>
332                         <scope>provided</scope>
333                 </dependency>
334                 <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>
345                 <dependency>
346                         <groupId>commons-lang</groupId>
347                         <artifactId>commons-lang</artifactId>
348                         <version>2.6</version>
349                 </dependency>
350                 <!-- for generating excel/csv/excelx -->
351                 <dependency>
352                         <groupId>org.apache.poi</groupId>
353                         <artifactId>poi</artifactId>
354                         <version>3.17</version>
355                         <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>
369                         <version>3.17</version>
370                         <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>
384                         <version>4.1.1</version>
385                         <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>
411                 <!-- Quartz -->
412                 <dependency>
413                         <groupId>org.quartz-scheduler</groupId>
414                         <artifactId>quartz</artifactId>
415                         <version>2.3.2</version>
416                         <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>
424                 <dependency>
425                         <groupId>org.bouncycastle</groupId>
426                         <artifactId>bcprov-jdk15on</artifactId>
427                         <version>1.64</version>
428                 </dependency>
429                 <dependency>
430                         <groupId>commons-codec</groupId>
431                         <artifactId>commons-codec</artifactId>
432                         <version>1.9</version>
433                 </dependency>
434                 <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>
455                                 <exclusion>
456                                         <groupId>org.apache.httpcomponents</groupId>
457                                         <artifactId>httpclient</artifactId>
458                                 </exclusion>    
459                         </exclusions>
460                 </dependency>
461                 <dependency>
462                         <groupId>org.onap.portal.sdk</groupId>
463                         <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>
485                         <groupId>org.onap.portal.sdk</groupId>
486                         <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>
496                         <groupId>org.onap.portal.sdk</groupId>
497                         <artifactId>epsdk-app-common</artifactId>
498                         <version>${epsdk.version}</version>
499                          <exclusions>
500                                 <exclusion>
501                         <groupId>commons-beanutils</groupId>
502                         <artifactId>commons-beanutils-core</artifactId>
503                  </exclusion>
504               </exclusions>
505                 </dependency>
506                 <dependency>
507                         <groupId>org.onap.portal.sdk</groupId>
508                         <artifactId>epsdk-workflow</artifactId>
509                         <version>${epsdk.version}</version>
510                 </dependency>
511                 <!-- Raptor required Libraries -->
512                 <!-- for static charts -->
513                 <dependency>
514                         <groupId>org.onap.portal.sdk</groupId>
515                         <artifactId>epsdk-analytics</artifactId>
516                         <version>${epsdk.version}</version>
517                 </dependency>
518                 <!-- 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>
523                         <version>4.5.3</version>
524                 </dependency>
525                 <!-- for testing -->
526                 <dependency>
527                         <groupId>junit</groupId>
528                         <artifactId>junit</artifactId>
529                         <version>4.11</version>
530                         <scope>test</scope>
531                 </dependency>
532                 <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>
552                 <dependency>
553                         <groupId>commons-beanutils</groupId>
554                         <artifactId>commons-beanutils</artifactId>
555                         <version>1.9.4</version>
556                 </dependency>
557                 <!-- <dependency>
558                         <groupId>com.ecwid.consul</groupId>
559                         <artifactId>consul-api</artifactId>
560                         <version>1.3.0</version>
561                 </dependency>
562                 <dependency>
563                         <groupId>com.orbitz.consul</groupId>
564                         <artifactId>consul-client</artifactId>
565                         <version>1.3.9</version>
566                 </dependency> -->
567                 <dependency>
568                         <groupId>commons-fileupload</groupId>
569                         <artifactId>commons-fileupload</artifactId>
570                         <version>1.3.3</version>
571                 </dependency>
572                 <dependency>
573                         <groupId>io.springfox</groupId>
574                         <artifactId>springfox-swagger2</artifactId>
575                         <version>2.9.2</version>
576                 </dependency>
577                 <dependency>
578                         <groupId>io.springfox</groupId>
579                         <artifactId>springfox-swagger-ui</artifactId>
580                         <version>2.9.2</version>
581                 </dependency>
582                 <!-- Schedulers required Libraries -->
583                 <dependency>
584                         <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>
596                         <version>2.10.0</version>
597                 </dependency>
598                 <!-- https://mvnrepository.com/artifact/org.glassfish/javax.el -->
599                 <dependency>
600                         <groupId>org.glassfish</groupId>
601                         <artifactId>javax.el</artifactId>
602                         <version>3.0.0</version>
603                 </dependency>
604                 <!-- https://mvnrepository.com/artifact/javax.el/el-api -->
605                 <dependency>
606                         <groupId>javax.el</groupId>
607                         <artifactId>javax.el-api</artifactId>
608                         <version>3.0.0</version>
609                 </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>
616                 <dependency>
617                         <groupId>org.glassfish.jersey.connectors</groupId>
618                         <artifactId>jersey-jetty-connector</artifactId>
619                         <version>2.29.1</version>
620                 </dependency>
621                 <!-- 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>
628                 <dependency>
629              <groupId>org.owasp.esapi</groupId>
630              <artifactId>esapi</artifactId>
631              <version>2.2.0.0</version>
632              <exclusions>
633                                 <exclusion>
634                         <groupId>commons-beanutils</groupId>
635                         <artifactId>commons-beanutils-core</artifactId>
636                  </exclusion>
637                  <exclusion>
638                         <groupId>commons-httpclient</groupId>
639                         <artifactId>commons-httpclient</artifactId>
640                  </exclusion>
641                                  <exclusion>
642                                 <groupId>org.beanshell</groupId>
643                         <artifactId>bsh-core</artifactId>
644                                  </exclusion>
645               </exclusions>
646         </dependency>
647         <dependency>
648                     <groupId>org.springframework.security</groupId>
649                     <artifactId>spring-security-core</artifactId>
650                     <version>${springframework.security.version}</version>
651             </dependency>
652             <dependency>
653                 <groupId>org.springframework.security</groupId>
654                 <artifactId>spring-security-web</artifactId>
655                 <version>${springframework.security.version}</version>
656         </dependency>
657             <dependency>
658                     <groupId>org.springframework.security</groupId>
659                     <artifactId>spring-security-config</artifactId>
660                     <version>${springframework.security.version}</version>
661             </dependency>
662                 <dependency>
663                 <groupId>com.thoughtworks.xstream</groupId>
664                 <artifactId>xstream</artifactId>
665                 <version>1.4.11.1</version>
666                 </dependency>
667                 <dependency>
668                         <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>
677                 <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>
687                         <!-- Music -->
688             <dependency>
689                     <groupId>org.onap.music</groupId>
690                     <artifactId>MUSIC</artifactId>
691                     <version>2.5.10</version>
692                     <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> 
733                 </dependency>
734                 <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>
743                         <version>1.2.62</version>
744                 </dependency>
745         </dependencies>
746
747 </project>