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