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