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