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