Configure sonar code coverage; use EPSDK 1.3.0
[portal.git] / ecomp-portal-BE-os / 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         <groupId>org.onap.portal</groupId>
5         <artifactId>ecompportal-be-os</artifactId>
6         <packaging>war</packaging>
7         <version>1.1</version>
8
9         <properties>
10                 <portal.version>1.3.0-SNAPSHOT</portal.version>
11                 <epsdk.version>1.3.0</epsdk.version>
12                 <!-- Jenkins SHOULD invoke mvn with argument -Dbuild.number=${BUILD_NUMBER} -->
13                 <build.number>0</build.number>
14                 <springframework.version>4.2.0.RELEASE</springframework.version>
15                 <hibernate.version>4.3.11.Final</hibernate.version>
16                 <eelf.version>1.0.0</eelf.version>
17                 <encoding>UTF-8</encoding>
18                 <!-- If skipTests is false use this command to generate the report:
19                         mvn clean jacoco:prepare-agent install jacoco:report  -->
20                 <skipTests>false</skipTests>
21                 <skipCoverage>true</skipCoverage>               
22                 <jacoco.data.file>${project.build.directory}/coverage-reports/jacoco-ut.exec</jacoco.data.file>
23                 <sonar-jacoco-listeners.version>3.8</sonar-jacoco-listeners.version>
24                 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
25                 <sonar.jacoco.reportPath>${project.build.directory}/code-coverage/jacoco.exec</sonar.jacoco.reportPath>
26                 <sonar.jacoco.itReportPath>${project.build.directory}/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
27                 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
28                 <sonar.exclusions>**.js</sonar.exclusions>
29                 <nexusproxy>https://nexus.onap.org</nexusproxy>
30                 <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath>
31                 <stagingNexusPath>content/repositories/staging/</stagingNexusPath>
32                 <releaseNexusPath>content/repositories/releases/</releaseNexusPath>
33         </properties>
34
35         <repositories>
36                 <repository>
37                         <id>onap-releases</id>
38                         <name>ONAP - Release Repository</name>
39                         <url>${nexusproxy}/${releaseNexusPath}</url>
40                 </repository>
41                 <repository>
42                         <id>onap-staging</id>
43                         <name>ONAP - Staging Repository</name>
44                         <url>${nexusproxy}/${stagingNexusPath}</url>
45                 </repository>
46                 <repository>
47                         <id>onap-snapshots</id>
48                         <name>ONAP - Snapshot Repository</name>
49                         <url>${nexusproxy}/${snapshotNexusPath}</url>
50                 </repository>
51                 <repository>
52                         <id>onap-public</id>
53                         <url>${nexusproxy}/content/groups/public</url>
54                 </repository>
55         </repositories>
56
57         <build>
58                 <sourceDirectory>src/main/java</sourceDirectory>
59                 <!-- The war file name carries no version number -->
60                 <finalName>${project.artifactId}</finalName>
61
62                 <plugins>
63                         <plugin>
64                                 <groupId>org.codehaus.mojo</groupId>
65                                 <artifactId>sonar-maven-plugin</artifactId>
66                                 <version>3.2</version>
67                         </plugin>
68                         <plugin>
69                                 <groupId>org.apache.maven.plugins</groupId>
70                                 <artifactId>maven-site-plugin</artifactId>
71                                 <version>3.6</version>
72                                 <dependencies>
73                                         <dependency>
74                                                 <groupId>org.apache.maven.wagon</groupId>
75                                                 <artifactId>wagon-webdav-jackrabbit</artifactId>
76                                                 <version>2.10</version>
77                                         </dependency>
78                                 </dependencies>
79                         </plugin>
80                         <plugin>
81                                 <artifactId>maven-compiler-plugin</artifactId>
82                                 <version>3.1</version>
83                                 <configuration>
84                                         <source>1.8</source>
85                                         <target>1.8</target>
86                                 </configuration>
87                         </plugin>
88                         <plugin>
89                                 <groupId>org.jacoco</groupId>
90                                 <artifactId>jacoco-maven-plugin</artifactId>
91                                 <version>0.7.5.201505241946</version>
92                                 <executions>
93                                         <!-- Prepares the property pointing to the JaCoCo runtime agent which 
94                                              is passed as VM argument when Maven the Surefire plugin is executed. -->
95                                         <execution>
96                                                 <id>pre-unit-test</id>
97                                                 <goals>
98                                                         <goal>prepare-agent</goal>
99                                                 </goals>
100                                                 <configuration>
101                                                         <!-- path to the file which contains the execution data. -->
102                                                         <destFile>${jacoco.data.file}</destFile>
103                                                         <!-- name of the property containing the settings for JaCoCo runtime agent. -->
104                                                         <propertyName>surefireArgLine</propertyName>
105                                                         <skip>${skipCoverage}</skip>
106                                                 </configuration>
107                                         </execution>
108                                         <!-- Ensures that the code coverage report for unit tests is created 
109                                                 after unit tests have been run. -->
110                                         <execution>
111                                                 <id>post-unit-test</id>
112                                                 <phase>test</phase>
113                                                 <goals>
114                                                         <goal>report</goal>
115                                                 </goals>
116                                                 <configuration>
117                                                         <!-- path to the file which contains the execution data. -->
118                                                         <dataFile>${jacoco.data.file}</dataFile>
119                                                         <!-- output directory for the code coverage report. -->
120                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
121                                                         <skip>${skipCoverage}</skip>
122                                                 </configuration>
123                                         </execution>
124                                         <!-- Will see build errors while running the test cases because of dual 
125                                                 instrumentation -->
126                                         <execution>
127                                                 <id>default-instrument</id>
128                                                 <goals>
129                                                         <goal>instrument</goal>
130                                                 </goals>
131                                                 <configuration>
132                                                         <skip>${skipCoverage}</skip>
133                                                 </configuration>
134                                         </execution>
135                                         <execution>
136                                                 <id>default-restore-instrumented-classes</id>
137                                                 <goals>
138                                                         <goal>restore-instrumented-classes</goal>
139                                                 </goals>
140                                                 <configuration>
141                                                         <skip>${skipCoverage}</skip>
142                                                 </configuration>
143                                         </execution>
144                                 </executions>
145                         </plugin>
146                         
147                         <plugin>
148                                 <groupId>org.apache.maven.plugins</groupId>
149                                 <artifactId>maven-surefire-plugin</artifactId>
150                                 <version>2.19.1</version>
151                                 <configuration>
152                                         <skipTests>${skipTests}</skipTests>
153                                         <includes>
154                                                 <include>**/*Test.java</include>
155                                                 <include>**/*TestCase.java</include>
156                                                 <inlcude>**/*TestSuite.java</inlcude>
157                                         </includes>
158                                         <!-- Intentionally Excluding TestFromSuite -->
159                                         <excludes>
160                                                 <exclude>**/*TestFromSuite.java</exclude>
161                                         </excludes>
162                                         <additionalClasspathElements>
163                                                 <additionalClasspathElement>${basedir}/src/main/webapp</additionalClasspathElement>
164                                                 <additionalClasspathElement>../ecomp-portal-BE-common/src/main/webapp</additionalClasspathElement>
165                                                 <additionalClasspathElement>../ecomp-portal-BE-common</additionalClasspathElement>
166                                         </additionalClasspathElements>
167                                         <systemPropertyVariables>
168                                                 <container.classpath>classpath:</container.classpath>
169                                         </systemPropertyVariables>
170                                 </configuration>
171                         </plugin>
172
173                         <plugin>
174                                 <artifactId>maven-war-plugin</artifactId>
175                                 <version>2.6</version>
176                                 <configuration>
177                                         <warSourceDirectory>src/main/webapp</warSourceDirectory>
178                                         <failOnMissingWebXml>false</failOnMissingWebXml>
179                                         <archive>
180                                                 <manifest>
181                                                         <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
182                                                 </manifest>
183                                                 <manifestEntries>
184                                                         <Build-Number>${project.version}.${build.number}</Build-Number>
185                                                         <Build-Time>${maven.build.timestamp}</Build-Time>
186                                                 </manifestEntries>
187                                         </archive>
188                                         <overlays>
189                                                 <!-- specify the order in which these should be applied -->                                             
190                                                 <overlay>
191                                                         <groupId>org.onap.portal</groupId>
192                                                         <artifactId>ecompportal-be-common</artifactId>
193                                                 </overlay>
194                                                 <overlay>
195                                                         <groupId>org.onap.portal.sdk</groupId>
196                                                         <artifactId>epsdk-app-overlay</artifactId>
197                                                 </overlay>                                              
198                                         </overlays>
199                                 </configuration>
200                         </plugin>
201
202                         <!-- No deployment step for this project -->
203                         <plugin>
204                                 <groupId>org.apache.maven.plugins</groupId>
205                                 <artifactId>maven-deploy-plugin</artifactId>
206                                 <version>2.8</version>
207                                 <configuration>
208                                         <skip>true</skip>
209                                 </configuration>
210                         </plugin>
211
212                         <plugin>
213                                 <artifactId>maven-resources-plugin</artifactId>
214                                 <version>3.0.2</version>
215                                 <!-- Your own property files can be placed in ecomp-portal-be/../../overrides 
216                                         directory and they will override the generic source controlled versions at 
217                                         build time allowing you to test locally with your own settings. -->
218                                 <executions>
219                                         <execution>
220                                                 <id>copy-custom-properties1</id>
221                                                 <phase>process-resources</phase>
222                                                 <goals>
223                                                         <goal>copy-resources</goal>
224                                                 </goals>
225                                                 <configuration>
226                                                         <overwrite>true</overwrite>
227                                                         <outputDirectory>${basedir}/war/WEB-INF/conf</outputDirectory>
228                                                         <resources>
229                                                                 <resource>
230                                                                         <directory>${basedir}/../../overrides</directory>
231                                                                         <includes>
232                                                                                 <include>system.properties</include>
233                                                                         </includes>
234                                                                 </resource>
235                                                         </resources>
236                                                 </configuration>
237                                         </execution>
238                                         <execution>
239                                                 <id>copy-custom-properties2</id>
240                                                 <phase>process-resources</phase>
241                                                 <goals>
242                                                         <goal>copy-resources</goal>
243                                                 </goals>
244                                                 <configuration>
245                                                         <overwrite>true</overwrite>
246                                                         <outputDirectory>${basedir}/war/WEB-INF/fusion/conf</outputDirectory>
247                                                         <resources>
248                                                                 <resource>
249                                                                         <directory>${basedir}/../../overrides</directory>
250                                                                         <includes>
251                                                                                 <include>fusion.properties</include>
252                                                                         </includes>
253                                                                 </resource>
254                                                         </resources>
255                                                 </configuration>
256                                         </execution>
257                                         <execution>
258                                                 <id>copy-custom-properties3</id>
259                                                 <phase>process-resources</phase>
260                                                 <goals>
261                                                         <goal>copy-resources</goal>
262                                                 </goals>
263                                                 <configuration>
264                                                         <overwrite>true</overwrite>
265                                                         <outputDirectory>${basedir}/src/main/resources</outputDirectory>
266                                                         <resources>
267                                                                 <resource>
268                                                                         <directory>${basedir}/../../overrides</directory>
269                                                                         <includes>
270                                                                                 <include>portal.properties</include>
271                                                                                 <include>openid-connect.properties</include>
272                                                                                 <include>openid-keystore.jwks</include>
273                                                                         </includes>
274                                                                 </resource>
275                                                         </resources>
276                                                 </configuration>
277                                         </execution>
278                                         <execution>
279                                                 <id>copy-src</id>
280                                                 <phase>generate-resources</phase>
281                                                 <goals>
282                                                         <goal>copy-resources</goal>
283                                                 </goals>
284                                                 <configuration>
285                                                         <outputDirectory>${basedir}/target/classes</outputDirectory>
286                                                         <overwrite>false</overwrite>
287                                                         <skip>${skipTests}</skip>
288                                                         <resources>
289                                                                 <resource>
290                                                                         <directory>${basedir}/../ecomp-portal-BE-common/target/classes</directory>
291                                                                 </resource>
292                                                         </resources>
293                                                 </configuration>
294                                         </execution>
295                                 </executions>
296                         </plugin>
297                 </plugins>
298
299                 <testResources>
300                         <testResource>
301                                 <directory>src/test/java</directory>
302                                 <includes>
303                                         <include>**/*Test*.*</include>
304                                 </includes>
305                         </testResource>
306                 </testResources>
307
308                 <resources>
309                         <resource>
310                                 <directory>src/main/resources</directory>
311                                 <includes>
312                                         <include>**/*.xml</include>
313                                         <include>**/*.ccf</include>
314                                         <include>**/*.properties</include>
315                                         <include>**/*.jwks</include>
316                                 </includes>
317                         </resource>
318                         <resource>
319                                 <directory>src/test/resources</directory>
320                                 <includes>
321                                         <include>**/*.xml</include>
322                                         <include>**/*.properties</include>
323                                 </includes>
324                         </resource>
325                         <!-- picks up the applicationcodes.properties file presented in \src\ 
326                                 path -->
327                         <resource>
328                                 <directory>src/main/java</directory>
329                                 <includes>
330                                         <include>**/*.xml</include>
331                                         <include>**/*.properties</include>
332                                 </includes>
333                         </resource>
334                 </resources>
335
336         </build>
337
338         <dependencies>
339         <!--  
340                 <dependency>
341                         <groupId>com.att.eelf</groupId>
342                         <artifactId>eelf-core</artifactId>
343                         <version>${eelf.version}</version>
344                         <exclusions>
345                                 <exclusion>
346                                         <groupId>org.mockito</groupId>
347                                         <artifactId>mockito-core</artifactId>
348                                 </exclusion>
349                                 <exclusion>
350                                         <groupId>org.powermock</groupId>
351                                         <artifactId>powermock-module-junit4</artifactId>
352                                 </exclusion>
353                         </exclusions>
354                 </dependency>
355         
356                 <dependency>
357                         <groupId>com.google.code.gson</groupId>
358                         <artifactId>gson</artifactId>
359                         <version>2.5</version>
360                 </dependency>
361         -->
362                 <!-- Spring -->
363                 <dependency>
364                         <groupId>org.springframework</groupId>
365                         <artifactId>spring-core</artifactId>
366                         <version>${springframework.version}</version>
367                 </dependency>
368                 <dependency>
369                         <groupId>org.springframework</groupId>
370                         <artifactId>spring-web</artifactId>
371                         <version>${springframework.version}</version>
372                 </dependency>
373                 <dependency>
374                         <groupId>org.springframework</groupId>
375                         <artifactId>spring-webmvc</artifactId>
376                         <version>${springframework.version}</version>
377                 </dependency>
378                 <dependency>
379                         <groupId>org.springframework</groupId>
380                         <artifactId>spring-tx</artifactId>
381                         <version>${springframework.version}</version>
382                 </dependency>
383                 <dependency>
384                         <groupId>org.springframework</groupId>
385                         <artifactId>spring-context-support</artifactId>
386                         <version>${springframework.version}</version>
387                 </dependency>
388                 <dependency>
389                         <groupId>org.springframework</groupId>
390                         <artifactId>spring-orm</artifactId>
391                         <version>${springframework.version}</version>
392                 </dependency>
393                 <dependency>
394                         <groupId>org.springframework</groupId>
395                         <artifactId>spring-test</artifactId>
396                         <version>${springframework.version}</version>
397                 </dependency>
398                 <dependency>
399                         <groupId>org.springframework.boot</groupId>
400                         <artifactId>spring-boot-starter</artifactId>
401                         <version>1.3.0.RELEASE</version>
402                         <exclusions>
403                                 <exclusion>
404                                         <groupId>org.slf4j</groupId>
405                                         <artifactId>log4j-over-slf4j</artifactId>
406                                 </exclusion>
407                                 <exclusion>
408                                         <groupId>ch.qos.logback</groupId>
409                                         <artifactId>logback-classic</artifactId>
410                                 </exclusion>
411                         </exclusions>
412                 </dependency>
413
414                 <!-- Hibernate -->
415                 <dependency>
416                         <groupId>org.hibernate</groupId>
417                         <artifactId>hibernate-core</artifactId>
418                         <version>${hibernate.version}</version>
419                 </dependency>
420
421                 <!-- jsr303 validation -->
422                 <!-- <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> 
423                         <version>1.1.0.Final</version> </dependency> -->
424
425                 <dependency>
426                         <groupId>org.hibernate</groupId>
427                         <artifactId>hibernate-validator</artifactId>
428                         <version>5.1.3.Final</version>
429                 </dependency>
430                 <!-- Servlet+JSP+JSTL -->
431                 <dependency>
432                         <groupId>javax.servlet</groupId>
433                         <artifactId>javax.servlet-api</artifactId>
434                         <version>3.1.0</version>
435                 </dependency>
436                 <dependency>
437                         <groupId>javax.servlet.jsp</groupId>
438                         <artifactId>javax.servlet.jsp-api</artifactId>
439                         <version>2.3.1</version>
440                 </dependency>
441                 <dependency>
442                         <groupId>javax.servlet</groupId>
443                         <artifactId>jstl</artifactId>
444                         <version>1.2</version>
445                 </dependency>
446
447                 <!-- Apache Tiles -->
448                 <dependency>
449                         <groupId>org.apache.tiles</groupId>
450                         <artifactId>tiles-core</artifactId>
451                         <version>3.0.5</version>
452                 </dependency>
453                 <dependency>
454                         <groupId>org.apache.tiles</groupId>
455                         <artifactId>tiles-jsp</artifactId>
456                         <version>3.0.5</version>
457                 </dependency>
458                 <dependency>
459                         <groupId>org.apache.cxf</groupId>
460                         <artifactId>cxf-rt-rs-client</artifactId>
461                         <version>3.0.0-milestone1</version>
462                 </dependency>
463
464                 <!-- Mapper -->
465                 <dependency>
466                         <groupId>com.fasterxml.jackson.core</groupId>
467                         <artifactId>jackson-annotations</artifactId>
468                         <version>2.6.3</version>
469                 </dependency>
470                 <dependency>
471                         <groupId>com.fasterxml.jackson.core</groupId>
472                         <artifactId>jackson-core</artifactId>
473                         <version>2.6.3</version>
474                 </dependency>
475                 <dependency>
476                         <groupId>com.fasterxml.jackson.core</groupId>
477                         <artifactId>jackson-databind</artifactId>
478                         <version>2.6.3</version>
479                 </dependency>
480                 <dependency>
481                         <groupId>com.fasterxml</groupId>
482                         <artifactId>classmate</artifactId>
483                         <version>1.3.1</version>
484                 </dependency>
485
486                 <dependency>
487                         <groupId>mysql</groupId>
488                         <artifactId>mysql-connector-java</artifactId>
489                         <version>5.1.22</version>
490                 </dependency>
491
492                 <!-- Elastic Search -->
493                 <dependency>
494                         <groupId>org.elasticsearch</groupId>
495                         <artifactId>elasticsearch</artifactId>
496                         <version>2.2.0</version>
497                 </dependency>
498                 <dependency>
499                         <groupId>io.searchbox</groupId>
500                         <artifactId>jest</artifactId>
501                         <version>2.0.0</version>
502                 </dependency>
503
504                 <dependency>
505                         <groupId>org.apache.jcs</groupId>
506                         <artifactId>jcs</artifactId>
507                         <version>1.3</version>
508                         <exclusions>
509                                 <exclusion>
510                                         <groupId>*</groupId>
511                                         <artifactId>*</artifactId>
512                                 </exclusion>
513                         </exclusions>
514                 </dependency>
515
516                 <dependency>
517                         <groupId>org.apache.tomcat</groupId>
518                         <artifactId>tomcat-websocket</artifactId>
519                         <version>8.0.28</version>
520                         <scope>provided</scope>
521                 </dependency>
522
523                 <!-- Raptor required Libraries -->
524                 <!-- for static charts -->
525                 <dependency>
526                         <groupId>commons-lang</groupId>
527                         <artifactId>commons-lang</artifactId>
528                         <version>2.6</version>
529                 </dependency>
530                 <!-- for generating excel/csv/excelx -->
531                 <dependency>
532                         <groupId>org.apache.poi</groupId>
533                         <artifactId>poi</artifactId>
534                         <version>3.5-FINAL</version>
535                         <exclusions>
536                                 <exclusion>
537                                         <groupId>commons-logging</groupId>
538                                         <artifactId>commons-logging</artifactId>
539                                 </exclusion>
540                                 <exclusion>
541                                         <groupId>log4j</groupId>
542                                         <artifactId>log4j</artifactId>
543                                 </exclusion>
544                         </exclusions>
545                 </dependency>
546                 <dependency>
547                         <groupId>org.apache.poi</groupId>
548                         <artifactId>poi-ooxml</artifactId>
549                         <version>3.5-FINAL</version>
550                         <exclusions>
551                                 <exclusion>
552                                         <groupId>commons-logging</groupId>
553                                         <artifactId>commons-logging</artifactId>
554                                 </exclusion>
555                                 <exclusion>
556                                         <groupId>log4j</groupId>
557                                         <artifactId>log4j</artifactId>
558                                 </exclusion>
559                         </exclusions>
560                 </dependency>
561                 <dependency>
562                         <groupId>org.apache.poi</groupId>
563                         <artifactId>poi-scratchpad</artifactId>
564                         <version>3.5-FINAL</version>
565                         <exclusions>
566                                 <exclusion>
567                                         <groupId>commons-logging</groupId>
568                                         <artifactId>commons-logging</artifactId>
569                                 </exclusion>
570                                 <exclusion>
571                                         <groupId>log4j</groupId>
572                                         <artifactId>log4j</artifactId>
573                                 </exclusion>
574                         </exclusions>
575                 </dependency>
576                 <dependency>
577                         <groupId>org.apache.poi</groupId>
578                         <artifactId>poi-contrib</artifactId>
579                         <version>3.5-FINAL</version>
580                         <exclusions>
581                                 <exclusion>
582                                         <groupId>commons-logging</groupId>
583                                         <artifactId>commons-logging</artifactId>
584                                 </exclusion>
585                                 <exclusion>
586                                         <groupId>log4j</groupId>
587                                         <artifactId>log4j</artifactId>
588                                 </exclusion>
589                         </exclusions>
590                 </dependency>
591
592                 <!-- <dependency> <groupId>com.lowagie</groupId> <artifactId>itext</artifactId> 
593                         <version>2.0.8</version> <exclusions> <exclusion> <groupId>org.bouncycastle</groupId> 
594                         <artifactId>bcprov-jdk14</artifactId> </exclusion> </exclusions> </dependency> -->
595                 <!-- Quartz -->
596                 <dependency>
597                         <groupId>org.quartz-scheduler</groupId>
598                         <artifactId>quartz</artifactId>
599                         <version>2.2.1</version>
600                         <exclusions>
601                                 <!-- SDK brings a new version of c3p0 -->
602                                 <exclusion>
603                                         <groupId>c3p0</groupId>
604                                         <artifactId>c3p0</artifactId>
605                                 </exclusion>
606                         </exclusions>
607                 </dependency>
608
609                 <dependency>
610                         <groupId>commons-codec</groupId>
611                         <artifactId>commons-codec</artifactId>
612                         <version>1.9</version>
613                 </dependency>
614
615                 <dependency>
616                         <groupId>com.att.nsa</groupId>
617                         <artifactId>cambriaClient</artifactId>
618                         <version>0.0.1</version>
619                         <exclusions>
620                                 <exclusion>
621                                         <groupId>commons-logging</groupId>
622                                         <artifactId>commons-logging</artifactId>
623                                 </exclusion>
624                                 <exclusion>
625                                         <groupId>log4j</groupId>
626                                         <artifactId>log4j</artifactId>
627                                 </exclusion>
628                                 <exclusion>
629                                         <groupId>log4j</groupId>
630                                         <artifactId>apache-log4j-extras</artifactId>
631                                 </exclusion>
632                                 <exclusion>
633                                         <groupId>org.slf4j</groupId>
634                                         <artifactId>slf4j-log4j12</artifactId>
635                                 </exclusion>
636                         </exclusions>
637                 </dependency>
638
639                 <!-- SDK overlay war -->
640                 <dependency>
641                         <groupId>org.onap.portal.sdk</groupId>
642                         <artifactId>epsdk-app-overlay</artifactId>
643                         <version>${epsdk.version}</version>
644                         <type>war</type>
645                 </dependency>
646
647                 <dependency>
648                         <groupId>org.onap.portal.sdk</groupId>
649                         <artifactId>epsdk-app-common</artifactId>
650                         <version>${epsdk.version}</version>
651                         <type>jar</type>
652                 </dependency>
653
654                 <!-- EcompPortal common overlay -->
655                 <dependency>
656                         <groupId>org.onap.portal</groupId>
657                         <artifactId>ecompportal-be-common</artifactId>
658                         <version>${portal.version}</version>
659                         <type>war</type>
660                 </dependency>
661
662                 <dependency>
663                         <groupId>org.onap.portal</groupId>
664                         <artifactId>ecompportal-be-common</artifactId>
665                         <version>${portal.version}</version>
666                         <type>jar</type>
667                         <classifier>classes</classifier>
668                 </dependency>
669
670                 <dependency>
671                         <groupId>org.onap.portal.sdk</groupId>
672                         <artifactId>epsdk-fw</artifactId>
673                         <version>${epsdk.version}</version>
674                         <exclusions>
675                                 <exclusion>
676                                         <groupId>commons-logging</groupId>
677                                         <artifactId>commons-logging</artifactId>
678                                 </exclusion>
679                                 <exclusion>
680                                         <groupId>log4j</groupId>
681                                         <artifactId>log4j</artifactId>
682                                 </exclusion>
683                                 <exclusion>
684                                         <groupId>log4j</groupId>
685                                         <artifactId>apache-log4j-extras</artifactId>
686                                 </exclusion>
687                                 <exclusion>
688                                         <groupId>org.slf4j</groupId>
689                                         <artifactId>slf4j-log4j12</artifactId>
690                                 </exclusion>
691                         </exclusions>
692                 </dependency>
693
694                 <dependency>
695                         <groupId>org.onap.portal.sdk</groupId>
696                         <artifactId>epsdk-core</artifactId>
697                         <version>${epsdk.version}</version>
698                 </dependency>
699
700                 <dependency>
701                         <groupId>org.onap.portal.sdk</groupId>
702                         <artifactId>epsdk-workflow</artifactId>
703                         <version>${epsdk.version}</version>
704                 </dependency>
705
706                 <!-- Raptor required Libraries -->
707                 <!-- for static charts -->
708                 <dependency>
709                         <groupId>org.onap.portal.sdk</groupId>
710                         <artifactId>epsdk-analytics</artifactId>
711                         <version>${epsdk.version}</version>
712                 </dependency>
713
714                 <!-- Referenced by some poms and needed for testing; do NOT use "test" 
715                         scope here. -->
716                 <dependency>
717                         <groupId>org.apache.httpcomponents</groupId>
718                         <artifactId>httpclient</artifactId>
719                         <version>4.5.2</version>
720                 </dependency>
721
722                 <!-- for testing -->
723                 <dependency>
724                         <groupId>junit</groupId>
725                         <artifactId>junit</artifactId>
726                         <version>4.11</version>
727                         <scope>test</scope>
728                 </dependency>
729                 <dependency>
730                         <groupId>org.onap.portal</groupId>
731                         <artifactId>ecomp-portal-BE-common-test</artifactId>
732                         <version>${portal.version}</version>
733                         <scope>test</scope>
734                 </dependency>
735                 <dependency>
736                         <groupId>org.mockito</groupId>
737                         <artifactId>mockito-core</artifactId>
738                         <version>1.8.5</version>
739                         <scope>test</scope>
740                 </dependency>
741         <dependency>
742                         <groupId>commons-beanutils</groupId>
743                         <artifactId>commons-beanutils</artifactId>
744                         <version>1.9.2</version>
745                 </dependency>
746          
747          
748                 
749                 <!-- OpenID Connect Dependencies -->
750                 <dependency>
751                         <groupId>org.mitre</groupId>
752                         <artifactId>openid-connect-client</artifactId>
753                         <version>1.2.2</version>
754                         <exclusions>
755                                 <exclusion>
756                                         <groupId>org.codehaus.jackson</groupId>
757                                         <artifactId>jackson-mapper-asl</artifactId>
758                                 </exclusion>
759                         </exclusions>
760                 </dependency>
761
762                 <dependency>
763                         <groupId>org.springframework.security</groupId>
764                         <artifactId>spring-security-taglibs</artifactId>
765                         <version>3.2.8.RELEASE</version>
766                         <exclusions>
767                                 <exclusion>
768                                         <groupId>org.springframework</groupId>
769                                         <artifactId>*</artifactId>
770                                 </exclusion>
771                         </exclusions>
772                 </dependency>
773
774                 <dependency>
775                         <groupId>org.aspectj</groupId>
776                         <artifactId>aspectjrt</artifactId>
777                         <version>1.8.9</version>
778                 </dependency>
779                 <dependency>
780                         <groupId>org.aspectj</groupId>
781                         <artifactId>aspectjweaver</artifactId>
782                         <version>1.8.9</version>
783                 </dependency>
784
785         </dependencies>
786
787         <reporting>
788                 <plugins>
789                         <plugin>
790                                 <groupId>org.apache.maven.plugins</groupId>
791                                 <artifactId>maven-javadoc-plugin</artifactId>
792                                 <version>2.10.4</version>
793                                 <configuration>
794                                         <failOnError>false</failOnError>
795                                         <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
796                                         <docletArtifact>
797                                                 <groupId>org.umlgraph</groupId>
798                                                 <artifactId>umlgraph</artifactId>
799                                                 <version>5.6</version>
800                                         </docletArtifact>
801                                         <additionalparam>-views</additionalparam>
802                                         <useStandardDocletOptions>true</useStandardDocletOptions>
803                                 </configuration>
804                         </plugin>
805                         
806                 </plugins>
807         </reporting>
808
809         <distributionManagement>
810                 <site>
811                         <id>ecomp-site</id>
812                         <url>dav:${nexusproxy}/content/sites/site/org/onap/portal/${project.version}</url>
813                 </site>
814         </distributionManagement>
815
816 </project>