updated few jars for security fix
[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.4.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                 <!-- Spring -->
149                 <dependency>
150                         <groupId>org.springframework</groupId>
151                         <artifactId>spring-core</artifactId>
152                         <version>${springframework.version}</version>
153                 </dependency>
154                 <dependency>
155                         <groupId>org.springframework</groupId>
156                         <artifactId>spring-web</artifactId>
157                         <version>${springframework.version}</version>
158                 </dependency>
159                 <dependency>
160                         <groupId>org.springframework</groupId>
161                         <artifactId>spring-webmvc</artifactId>
162                         <version>${springframework.version}</version>
163                 </dependency>
164                 <dependency>
165                         <groupId>org.springframework</groupId>
166                         <artifactId>spring-tx</artifactId>
167                         <version>${springframework.version}</version>
168                 </dependency>
169                 <dependency>
170                         <groupId>org.springframework</groupId>
171                         <artifactId>spring-context-support</artifactId>
172                         <version>${springframework.version}</version>
173                 </dependency>
174                 <dependency>
175                         <groupId>org.springframework</groupId>
176                         <artifactId>spring-orm</artifactId>
177                         <version>${springframework.version}</version>
178                 </dependency>
179                 <dependency>
180                         <groupId>org.springframework</groupId>
181                         <artifactId>spring-test</artifactId>
182                         <version>${springframework.version}</version>
183                 </dependency>
184                 <dependency>
185                         <groupId>javax.xml.bind</groupId>
186                         <artifactId>jaxb-api</artifactId>
187                         <version>2.4.0-b180830.0359</version>
188                 </dependency>
189
190                 <!-- Hibernate -->
191                 <dependency>
192                         <groupId>org.hibernate</groupId>
193                         <artifactId>hibernate-core</artifactId>
194                         <version>${hibernate.version}</version>
195                 </dependency>
196                 <dependency>
197                         <groupId>org.hibernate</groupId>
198                         <artifactId>hibernate-validator</artifactId>
199                         <version>6.0.17.Final</version>
200                 </dependency>
201                 <!-- hibernate-core depends on dom4j, which has optional dependencies. 
202                         On jenkins, contrary to doc, mvn 3.0.5 packages the optional dependencies 
203                         in the war. Workaround: exclude them explicitly. -->
204                 <dependency>
205                         <groupId>dom4j</groupId>
206                         <artifactId>dom4j</artifactId>
207                         <version>1.6.1</version>
208                         <exclusions>
209                                 <exclusion>
210                                         <groupId>jaxme</groupId>
211                                         <artifactId>jaxme-api</artifactId>
212                                 </exclusion>
213                                 <exclusion>
214                                         <groupId>jaxen</groupId>
215                                         <artifactId>jaxen</artifactId>
216                                 </exclusion>
217                                 <exclusion>
218                                         <groupId>msv</groupId>
219                                         <artifactId>xsdlib</artifactId>
220                                 </exclusion>
221                                 <exclusion>
222                                         <groupId>msv</groupId>
223                                         <artifactId>relaxngDatatype</artifactId>
224                                 </exclusion>
225                                 <exclusion>
226                                         <groupId>pull-parser</groupId>
227                                         <artifactId>pull-parser</artifactId>
228                                 </exclusion>
229                                 <exclusion>
230                                         <groupId>xpp3</groupId>
231                                         <artifactId>xpp3</artifactId>
232                                 </exclusion>
233                                 <exclusion>
234                                         <groupId>stax</groupId>
235                                         <artifactId>stax-api</artifactId>
236                                 </exclusion>
237                         </exclusions>
238                 </dependency>
239                 <!-- Servlet+JSP+JSTL -->
240                 <dependency>
241                         <groupId>javax.servlet</groupId>
242                         <artifactId>javax.servlet-api</artifactId>
243                         <version>3.1.0</version>
244                 </dependency>
245                 <dependency>
246                         <groupId>javax.servlet.jsp</groupId>
247                         <artifactId>javax.servlet.jsp-api</artifactId>
248                         <version>2.3.1</version>
249                 </dependency>
250                 <dependency>
251                         <groupId>org.apache.taglibs</groupId>
252                         <artifactId>taglibs-standard-spec</artifactId>
253                         <version>1.2.5</version>
254                 </dependency>
255                 <dependency>
256                         <groupId>org.apache.taglibs</groupId>
257                         <artifactId>taglibs-standard-impl</artifactId>
258                         <version>1.2.5</version>
259                 </dependency>
260                 <dependency>
261                         <groupId>org.apache.taglibs</groupId>
262                         <artifactId>taglibs-standard-jstlel</artifactId>
263                         <version>1.2.5</version>
264                 </dependency>
265                 <!-- Apache Tiles -->
266                 <dependency>
267                         <groupId>org.apache.tiles</groupId>
268                         <artifactId>tiles-core</artifactId>
269                         <version>3.0.5</version>
270                 </dependency>
271                 <dependency>
272                         <groupId>org.apache.tiles</groupId>
273                         <artifactId>tiles-jsp</artifactId>
274                         <version>3.0.5</version>
275                 </dependency>
276                 <dependency>
277                         <groupId>org.apache.cxf</groupId>
278                         <artifactId>cxf-rt-rs-client</artifactId>
279                         <version>3.3.4</version>
280                 </dependency>
281                 <!-- Mapper -->
282                 <dependency>
283                         <groupId>com.fasterxml.jackson.core</groupId>
284                         <artifactId>jackson-annotations</artifactId>
285                         <version>${jackson.version}</version>
286                 </dependency>
287                 <dependency>
288                         <groupId>com.fasterxml.jackson.core</groupId>
289                         <artifactId>jackson-core</artifactId>
290                         <version>${jackson.version}</version>
291                 </dependency>
292                 <dependency>
293                         <groupId>com.fasterxml.jackson.core</groupId>
294                         <artifactId>jackson-databind</artifactId>
295                         <version>${jackson.version}</version>
296                 </dependency>
297                 <dependency>
298                         <groupId>org.postgresql</groupId>
299                         <artifactId>postgresql</artifactId>
300                         <version>42.2.11</version>
301                 </dependency>
302                 <!-- Elastic Search -->
303                 <dependency>
304                         <groupId>org.elasticsearch</groupId>
305                         <artifactId>elasticsearch</artifactId>
306                         <version>7.6.1</version>
307                         <exclusions>
308                                 <exclusion>
309                                         <groupId>org.apache.lucene</groupId>
310                                         <artifactId>lucene-queryparser</artifactId>
311                                 </exclusion>
312                         </exclusions>
313                 </dependency>
314                 <dependency>
315                         <groupId>io.searchbox</groupId>
316                         <artifactId>jest</artifactId>
317                         <version>5.3.2</version>
318                 </dependency>
319                 <dependency>
320                         <groupId>org.apache.jcs</groupId>
321                         <artifactId>jcs</artifactId>
322                         <version>1.3</version>
323                         <exclusions>
324                                 <exclusion>
325                                         <groupId>*</groupId>
326                                         <artifactId>*</artifactId>
327                                 </exclusion>
328                         </exclusions>
329                 </dependency>
330                 <dependency>
331                         <groupId>org.apache.tomcat</groupId>
332                         <artifactId>tomcat-websocket</artifactId>
333                         <version>9.0.27</version>
334                         <scope>provided</scope>
335                 </dependency>
336                 
337                 <dependency>
338                         <groupId>concurrent</groupId>
339                         <artifactId>concurrent</artifactId>
340                         <version>1.3.2</version>
341                         <exclusions>
342                                 <exclusion>
343                                         <groupId>*</groupId>
344                                         <artifactId>*</artifactId>
345                                 </exclusion>
346                         </exclusions>
347                 </dependency>
348                 <dependency>
349                         <groupId>commons-lang</groupId>
350                         <artifactId>commons-lang</artifactId>
351                         <version>2.6</version>
352                 </dependency>
353                 <!-- for generating excel/csv/excelx -->
354                 <dependency>
355                         <groupId>org.apache.poi</groupId>
356                         <artifactId>poi</artifactId>
357                         <version>4.1.2</version>
358                         <exclusions>
359                                 <exclusion>
360                                         <groupId>commons-logging</groupId>
361                                         <artifactId>commons-logging</artifactId>
362                                 </exclusion>
363                                 <exclusion>
364                                         <groupId>log4j</groupId>
365                                         <artifactId>log4j</artifactId>
366                                 </exclusion>
367                         </exclusions>
368                 </dependency>
369                 <dependency>
370                         <groupId>org.apache.poi</groupId>
371                         <artifactId>poi-ooxml</artifactId>
372                         <version>4.1.2</version>
373                         <exclusions>
374                                 <exclusion>
375                                         <groupId>commons-logging</groupId>
376                                         <artifactId>commons-logging</artifactId>
377                                 </exclusion>
378                                 <exclusion>
379                                         <groupId>log4j</groupId>
380                                         <artifactId>log4j</artifactId>
381                                 </exclusion>
382                         </exclusions>
383                 </dependency>
384                 <dependency>
385                         <groupId>org.apache.poi</groupId>
386                         <artifactId>poi-scratchpad</artifactId>
387                         <version>4.1.2</version>
388                         <exclusions>
389                                 <exclusion>
390                                         <groupId>commons-logging</groupId>
391                                         <artifactId>commons-logging</artifactId>
392                                 </exclusion>
393                                 <exclusion>
394                                         <groupId>log4j</groupId>
395                                         <artifactId>log4j</artifactId>
396                                 </exclusion>
397                         </exclusions>
398                 </dependency>
399                 <dependency>
400                         <groupId>org.apache.poi</groupId>
401                         <artifactId>poi-contrib</artifactId>
402                         <version>3.5-FINAL</version>
403                         <exclusions>
404                                 <exclusion>
405                                         <groupId>commons-logging</groupId>
406                                         <artifactId>commons-logging</artifactId>
407                                 </exclusion>
408                                 <exclusion>
409                                         <groupId>log4j</groupId>
410                                         <artifactId>log4j</artifactId>
411                                 </exclusion>
412                         </exclusions>
413                 </dependency>
414                 <!-- Quartz -->
415                 <dependency>
416                         <groupId>org.quartz-scheduler</groupId>
417                         <artifactId>quartz</artifactId>
418                         <version>2.3.2</version>
419                         <exclusions>
420                                 <!-- SDK brings a new version of c3p0 -->
421                                 <exclusion>
422                                         <groupId>c3p0</groupId>
423                                         <artifactId>c3p0</artifactId>
424                                 </exclusion>
425                         </exclusions>
426                 </dependency>
427                 <dependency>
428                         <groupId>org.bouncycastle</groupId>
429                         <artifactId>bcprov-jdk15on</artifactId>
430                         <version>1.64</version>
431                 </dependency>
432                 <dependency>
433                         <groupId>commons-codec</groupId>
434                         <artifactId>commons-codec</artifactId>
435                         <version>1.15</version>
436                 </dependency>
437                 <dependency>
438                         <groupId>com.att.nsa</groupId>
439                         <artifactId>cambriaClient</artifactId>
440                         <version>0.0.1</version>
441                         <exclusions>
442                                 <exclusion>
443                                         <groupId>commons-logging</groupId>
444                                         <artifactId>commons-logging</artifactId>
445                                 </exclusion>
446                                 <exclusion>
447                                         <groupId>log4j</groupId>
448                                         <artifactId>log4j</artifactId>
449                                 </exclusion>
450                                 <exclusion>
451                                         <groupId>log4j</groupId>
452                                         <artifactId>apache-log4j-extras</artifactId>
453                                 </exclusion>
454                                 <exclusion>
455                                         <groupId>org.slf4j</groupId>
456                                         <artifactId>slf4j-log4j12</artifactId>
457                                 </exclusion>
458                                 <exclusion>
459                                         <groupId>org.apache.httpcomponents</groupId>
460                                         <artifactId>httpclient</artifactId>
461                                 </exclusion>
462                         </exclusions>
463                 </dependency>
464                 <dependency>
465                         <groupId>org.onap.portal.sdk</groupId>
466                         <artifactId>epsdk-fw</artifactId>
467                         <version>${epsdk.version}</version>
468                         <exclusions>
469                                 <exclusion>
470                                         <groupId>commons-logging</groupId>
471                                         <artifactId>commons-logging</artifactId>
472                                 </exclusion>
473                                 <exclusion>
474                                         <groupId>log4j</groupId>
475                                         <artifactId>log4j</artifactId>
476                                 </exclusion>
477                                 <exclusion>
478                                         <groupId>log4j</groupId>
479                                         <artifactId>apache-log4j-extras</artifactId>
480                                 </exclusion>
481                                 <exclusion>
482                                         <groupId>org.slf4j</groupId>
483                                         <artifactId>slf4j-log4j12</artifactId>
484                                 </exclusion>
485                         </exclusions>
486                 </dependency>
487                 <dependency>
488                         <groupId>org.onap.portal.sdk</groupId>
489                         <artifactId>epsdk-core</artifactId>
490                         <version>${epsdk.version}</version>
491                         <exclusions>
492                                 <exclusion>
493                                         <groupId>mysql</groupId>
494                                         <artifactId>mysql-connector-java</artifactId>
495                                 </exclusion>
496                         </exclusions>
497                 </dependency>
498                 <dependency>
499                         <groupId>org.onap.portal.sdk</groupId>
500                         <artifactId>epsdk-app-common</artifactId>
501                         <version>${epsdk.version}</version>
502                         <exclusions>
503                                 <exclusion>
504                                         <groupId>commons-beanutils</groupId>
505                                         <artifactId>commons-beanutils-core</artifactId>
506                                 </exclusion>
507                         </exclusions>
508                 </dependency>
509                 <dependency>
510                         <groupId>org.onap.portal.sdk</groupId>
511                         <artifactId>epsdk-workflow</artifactId>
512                         <version>${epsdk.version}</version>
513                 </dependency>
514                 <!-- Raptor required Libraries -->
515                 <!-- for static charts -->
516                 <dependency>
517                         <groupId>org.onap.portal.sdk</groupId>
518                         <artifactId>epsdk-analytics</artifactId>
519                         <version>${epsdk.version}</version>
520                 </dependency>
521                 <!-- Referenced by some poms and needed for testing; do NOT use "test" 
522                         scope here. -->
523                 <dependency>
524                         <groupId>org.apache.httpcomponents</groupId>
525                         <artifactId>httpclient</artifactId>
526                         <version>4.5.3</version>
527                 </dependency>
528                 <!-- for testing -->
529                 <dependency>
530                         <groupId>junit</groupId>
531                         <artifactId>junit</artifactId>
532                         <version>4.11</version>
533                         <scope>test</scope>
534                 </dependency>
535                 <dependency>
536                         <groupId>org.powermock</groupId>
537                         <artifactId>powermock-api-mockito</artifactId>
538                         <version>1.6.1</version>
539                 </dependency>
540                 <dependency>
541                         <groupId>org.powermock</groupId>
542                         <artifactId>powermock-core</artifactId>
543                         <version>1.6.1</version>
544                 </dependency>
545                 <dependency>
546                         <groupId>org.powermock</groupId>
547                         <artifactId>powermock-module-junit4</artifactId>
548                         <version>1.6.1</version>
549                 </dependency>
550                 <dependency>
551                         <groupId>org.mockito</groupId>
552                         <artifactId>mockito-core</artifactId>
553                         <version>1.8.5</version>
554                 </dependency>
555                 <dependency>
556                         <groupId>commons-beanutils</groupId>
557                         <artifactId>commons-beanutils</artifactId>
558                         <version>1.9.4</version>
559                 </dependency>
560                 <!-- <dependency> <groupId>com.ecwid.consul</groupId> <artifactId>consul-api</artifactId> 
561                         <version>1.3.0</version> </dependency> <dependency> <groupId>com.orbitz.consul</groupId> 
562                         <artifactId>consul-client</artifactId> <version>1.3.9</version> </dependency> -->
563                 <dependency>
564                         <groupId>commons-fileupload</groupId>
565                         <artifactId>commons-fileupload</artifactId>
566                         <version>1.4</version>
567                 </dependency>
568                 
569                 <!-- Schedulers required Libraries -->
570                 <dependency>
571                         <groupId>com.googlecode.json-simple</groupId>
572                         <artifactId>json-simple</artifactId>
573                         <version>1.1.1</version>
574                 </dependency>
575                 <dependency>
576                         <groupId>org.glassfish.jersey.core</groupId>
577                         <artifactId>jersey-client</artifactId>
578                         <version>2.23.1</version>
579                 </dependency>
580                 <dependency>
581                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
582                         <artifactId>jackson-jaxrs-json-provider</artifactId>
583                         <version>${jackson.version}</version>
584                 </dependency>
585                 <!-- https://mvnrepository.com/artifact/org.glassfish/javax.el -->
586                 <dependency>
587                         <groupId>org.glassfish</groupId>
588                         <artifactId>javax.el</artifactId>
589                         <version>3.0.0</version>
590                 </dependency>
591                 <!-- https://mvnrepository.com/artifact/javax.el/el-api -->
592                 <dependency>
593                         <groupId>javax.el</groupId>
594                         <artifactId>javax.el-api</artifactId>
595                         <version>3.0.0</version>
596                 </dependency>
597                 <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
598                 <dependency>
599                         <groupId>org.jsoup</groupId>
600                         <artifactId>jsoup</artifactId>
601                         <version>1.12.1</version>
602                 </dependency>
603                 <dependency>
604                         <groupId>org.glassfish.jersey.connectors</groupId>
605                         <artifactId>jersey-jetty-connector</artifactId>
606                         <version>2.29.1</version>
607                 </dependency>
608                 <!-- Jacoco for offline instrumentation -->
609                 <dependency>
610                         <groupId>org.jacoco</groupId>
611                         <artifactId>org.jacoco.agent</artifactId>
612                         <version>${jacocoVersion}</version>
613                         <classifier>runtime</classifier>
614                 </dependency>
615                 <dependency>
616                         <groupId>org.owasp.esapi</groupId>
617                         <artifactId>esapi</artifactId>
618                         <version>2.2.0.0</version>
619                         <exclusions>
620                                 <exclusion>
621                                         <groupId>commons-beanutils</groupId>
622                                         <artifactId>commons-beanutils-core</artifactId>
623                                 </exclusion>
624                                 <exclusion>
625                                         <groupId>commons-httpclient</groupId>
626                                         <artifactId>commons-httpclient</artifactId>
627                                 </exclusion>
628                                 <exclusion>
629                                         <groupId>org.beanshell</groupId>
630                                         <artifactId>bsh-core</artifactId>
631                                 </exclusion>
632                         </exclusions>
633                 </dependency>
634                 <dependency>
635                         <groupId>org.springframework.security</groupId>
636                         <artifactId>spring-security-core</artifactId>
637                         <version>${springframework.security.version}</version>
638                 </dependency>
639                 <dependency>
640                         <groupId>org.springframework.security</groupId>
641                         <artifactId>spring-security-web</artifactId>
642                         <version>${springframework.security.version}</version>
643                 </dependency>
644                 <dependency>
645                         <groupId>org.springframework.security</groupId>
646                         <artifactId>spring-security-config</artifactId>
647                         <version>${springframework.security.version}</version>
648                 </dependency>
649                 <dependency>
650                         <groupId>io.springfox</groupId>
651                         <artifactId>springfox-swagger2</artifactId>
652                         <version>3.0.0</version>
653                 </dependency>
654                 <dependency>
655                         <groupId>io.springfox</groupId>
656                         <artifactId>springfox-swagger-ui</artifactId>
657                         <version>3.0.0</version>
658                 </dependency>
659                 <dependency>
660                         <groupId>com.thoughtworks.xstream</groupId>
661                         <artifactId>xstream</artifactId>
662                         <version>1.4.11.1</version>
663                 </dependency>
664                 <dependency>
665                         <groupId>ch.qos.logback</groupId>
666                         <artifactId>logback-core</artifactId>
667                         <version>1.2.3</version>
668                 </dependency>
669                 <dependency>
670                         <groupId>ch.qos.logback</groupId>
671                         <artifactId>logback-classic</artifactId>
672                         <version>1.2.3</version>
673                 </dependency>
674                 <dependency>
675                         <groupId>commons-collections</groupId>
676                         <artifactId>commons-collections</artifactId>
677                         <version>3.2.2</version>
678                 </dependency>
679                 <dependency>
680                         <groupId>xalan</groupId>
681                         <artifactId>xalan</artifactId>
682                         <version>2.7.2</version>
683                 </dependency>
684                 <!-- Music -->
685                 <dependency>
686                         <groupId>org.onap.music</groupId>
687                         <artifactId>MUSIC</artifactId>
688                         <version>2.5.10</version>
689                         <exclusions>
690                                 <exclusion>
691                                         <groupId>com.sun.jersey</groupId>
692                                         <artifactId>jersey-client</artifactId>
693                                 </exclusion>
694                                 <exclusion>
695                                         <groupId>com.sun.jersey</groupId>
696                                         <artifactId>jersey-server</artifactId>
697                                 </exclusion>
698                                 <exclusion>
699                                         <groupId>com.sun.jersey</groupId>
700                                         <artifactId>jersey-json</artifactId>
701                                 </exclusion>
702                                 <exclusion>
703                                         <groupId>com.sun.jersey</groupId>
704                                         <artifactId>jersey-servlet</artifactId>
705                                 </exclusion>
706                         </exclusions>
707                 </dependency>
708
709                 <dependency>
710                         <groupId>org.onap.portal.sdk</groupId>
711                         <artifactId>epsdk-music</artifactId>
712                         <version>${epsdk.version}</version>
713
714                         <exclusions>
715                                 <exclusion>
716                                         <groupId>com.sun.jersey</groupId>
717                                         <artifactId>jersey-client</artifactId>
718                                 </exclusion>
719                                 <exclusion>
720                                         <groupId>com.sun.jersey</groupId>
721                                         <artifactId>jersey-server</artifactId>
722                                 </exclusion>
723                                 <exclusion>
724                                         <groupId>com.sun.jersey</groupId>
725                                         <artifactId>jersey-json</artifactId>
726                                 </exclusion>
727                                 <exclusion>
728                                         <groupId>com.sun.jersey</groupId>
729                                         <artifactId>jersey-servlet</artifactId>
730                                 </exclusion>
731                         </exclusions>
732                 </dependency>
733                 <dependency>
734                         <groupId>org.projectlombok</groupId>
735                         <artifactId>lombok</artifactId>
736                         <version>1.18.4</version>
737                 </dependency>
738
739                 <dependency>
740                         <groupId>com.alibaba</groupId>
741                         <artifactId>fastjson</artifactId>
742                         <version>1.2.62</version>
743                 </dependency>
744         </dependencies>
745
746 </project>