Security/ Package Name changes
[portal.git] / ecomp-portal-BE-common / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4
5         <parent>
6                 <groupId>org.onap.portal</groupId>
7                 <artifactId>onap-portal-parent</artifactId>
8                 <version>2.2</version>
9         </parent>
10
11         <artifactId>portal-be-common</artifactId>
12         <packaging>war</packaging>
13
14         <properties>
15                 <skipTests>false</skipTests>
16         </properties>
17
18         <build>
19                 <!-- The war file name carries no version number -->
20                 <finalName>${project.artifactId}</finalName>
21
22                 <plugins>
23                         <!-- Generate javadoc jar; see profile for Java 8 -->
24                         <plugin>
25                                 <groupId>org.apache.maven.plugins</groupId>
26                                 <artifactId>maven-javadoc-plugin</artifactId>
27                                 <version>3.0.0-M1</version>
28                                 <executions>
29                                         <execution>
30                                                 <id>attach-javadocs</id>
31                                                 <goals>
32                                                         <goal>jar</goal>
33                                                 </goals>
34                                         </execution>
35                                 </executions>
36                         </plugin>
37
38                         <!-- Generate source jar -->
39                         <plugin>
40                                 <groupId>org.apache.maven.plugins</groupId>
41                                 <artifactId>maven-source-plugin</artifactId>
42                                 <version>3.0.0</version>
43                                 <executions>
44                                         <execution>
45                                                 <id>attach-sources</id>
46                                                 <goals>
47                                                         <goal>jar</goal>
48                                                 </goals>
49                                         </execution>
50                                 </executions>
51                         </plugin>
52                         
53                         <plugin>
54                         <groupId>org.apache.maven.plugins</groupId>
55                         <artifactId>maven-jar-plugin</artifactId>
56                         <version>3.0.0</version>
57                         <executions>
58                           <execution>
59                             <goals>
60                               <goal>test-jar</goal>
61                             </goals>
62                           </execution>
63                         </executions>
64                 </plugin>
65
66                         <plugin>
67                                 <groupId>org.apache.maven.plugins</groupId>
68                                 <artifactId>maven-war-plugin</artifactId>
69                                 <version>3.0.0</version>
70                                 <configuration>
71                                         <!-- Build a jar with all the Java classes -->
72                                         <attachClasses>true</attachClasses>
73                                         <!-- Do not put any jars in the war -->
74                                         <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
75                                 </configuration>
76                         </plugin>
77
78                         <!-- No deployment step for this project -->
79                         <plugin>
80                                 <groupId>org.apache.maven.plugins</groupId>
81                                 <artifactId>maven-deploy-plugin</artifactId>
82                                 <version>2.8</version>
83                                 <configuration>
84                                         <skip>true</skip>
85                                 </configuration>
86                         </plugin>
87
88                 </plugins>
89
90                 <testResources>
91                         <testResource>
92                                 <directory>src/test/java</directory>
93                                 <includes>
94                                         <include>**/*Test*.*</include>
95                                 </includes>
96                         </testResource>
97                 </testResources>
98
99                 <resources>
100                         <resource>
101                                 <directory>src/main/resources</directory>
102                                 <includes>
103                                         <include>**/*</include>
104                                 </includes>
105                         </resource>
106                         <!-- picks up the applicationcodes.properties file presented in \src\ 
107                                 path -->
108                         <resource>
109                                 <directory>src/main/java</directory>
110                                 <includes>
111                                         <include>**/*.xml</include>
112                                         <include>**/*.properties</include>
113                                 </includes>
114                         </resource>
115                 </resources>
116
117         </build>
118
119         <dependencies>
120                 <dependency>
121                         <groupId>com.att.eelf</groupId>
122                         <artifactId>eelf-core</artifactId>
123                         <version>${eelf.version}</version>
124                 </dependency>
125                 <dependency>
126                         <groupId>com.google.code.gson</groupId>
127                         <artifactId>gson</artifactId>
128                         <version>2.5</version>
129                 </dependency>
130                 <!-- Spring -->
131                 <dependency>
132                         <groupId>org.springframework</groupId>
133                         <artifactId>spring-core</artifactId>
134                         <version>${springframework.version}</version>
135                 </dependency>
136                 <dependency>
137                         <groupId>org.springframework</groupId>
138                         <artifactId>spring-web</artifactId>
139                         <version>${springframework.version}</version>
140                 </dependency>
141                 <dependency>
142                         <groupId>org.springframework</groupId>
143                         <artifactId>spring-webmvc</artifactId>
144                         <version>${springframework.version}</version>
145                 </dependency>
146                 <dependency>
147                         <groupId>org.springframework</groupId>
148                         <artifactId>spring-tx</artifactId>
149                         <version>${springframework.version}</version>
150                 </dependency>
151                 <dependency>
152                         <groupId>org.springframework</groupId>
153                         <artifactId>spring-context-support</artifactId>
154                         <version>${springframework.version}</version>
155                 </dependency>
156                 <dependency>
157                         <groupId>org.springframework</groupId>
158                         <artifactId>spring-orm</artifactId>
159                         <version>${springframework.version}</version>
160                 </dependency>
161                 <dependency>
162                         <groupId>org.springframework</groupId>
163                         <artifactId>spring-test</artifactId>
164                         <version>${springframework.version}</version>
165                 </dependency>
166                 <dependency>
167                         <groupId>org.springframework.boot</groupId>
168                         <artifactId>spring-boot-starter</artifactId>
169                         <version>1.3.0.RELEASE</version>
170                         <exclusions>
171                                 <exclusion>
172                                         <groupId>org.slf4j</groupId>
173                                         <artifactId>log4j-over-slf4j</artifactId>
174                                 </exclusion>
175                                 <exclusion>
176                                         <groupId>ch.qos.logback</groupId>
177                                         <artifactId>logback-classic</artifactId>
178                                 </exclusion>
179                         </exclusions>
180                 </dependency>
181                 <!-- Hibernate -->
182                 <dependency>
183                         <groupId>org.hibernate</groupId>
184                         <artifactId>hibernate-core</artifactId>
185                         <version>${hibernate.version}</version>
186                 </dependency>
187                 <dependency>
188                         <groupId>org.hibernate</groupId>
189                         <artifactId>hibernate-validator</artifactId>
190                         <version>5.1.3.Final</version>
191                 </dependency>
192                 <!-- hibernate-core depends on dom4j, which has optional dependencies. 
193                         On jenkins, contrary to doc, mvn 3.0.5 packages the optional dependencies 
194                         in the war. Workaround: exclude them explicitly. -->
195                 <dependency>
196                         <groupId>dom4j</groupId>
197                         <artifactId>dom4j</artifactId>
198                         <version>1.6.1</version>
199                         <exclusions>
200                                 <exclusion>
201                                         <groupId>jaxme</groupId>
202                                         <artifactId>jaxme-api</artifactId>
203                                 </exclusion>
204                                 <exclusion>
205                                         <groupId>jaxen</groupId>
206                                         <artifactId>jaxen</artifactId>
207                                 </exclusion>
208                                 <exclusion>
209                                         <groupId>msv</groupId>
210                                         <artifactId>xsdlib</artifactId>
211                                 </exclusion>
212                                 <exclusion>
213                                         <groupId>msv</groupId>
214                                         <artifactId>relaxngDatatype</artifactId>
215                                 </exclusion>
216                                 <exclusion>
217                                         <groupId>pull-parser</groupId>
218                                         <artifactId>pull-parser</artifactId>
219                                 </exclusion>
220                                 <exclusion>
221                                         <groupId>xpp3</groupId>
222                                         <artifactId>xpp3</artifactId>
223                                 </exclusion>
224                                 <exclusion>
225                                         <groupId>stax</groupId>
226                                         <artifactId>stax-api</artifactId>
227                                 </exclusion>
228                         </exclusions>
229                 </dependency>
230                 <!-- Servlet+JSP+JSTL -->
231                 <dependency>
232                         <groupId>javax.servlet</groupId>
233                         <artifactId>javax.servlet-api</artifactId>
234                         <version>3.1.0</version>
235                 </dependency>
236                 <dependency>
237                         <groupId>javax.servlet.jsp</groupId>
238                         <artifactId>javax.servlet.jsp-api</artifactId>
239                         <version>2.3.1</version>
240                 </dependency>
241                 <dependency>
242                         <groupId>javax.servlet</groupId>
243                         <artifactId>jstl</artifactId>
244                         <version>1.2</version>
245                 </dependency>
246                 <!-- Apache Tiles -->
247                 <dependency>
248                         <groupId>org.apache.tiles</groupId>
249                         <artifactId>tiles-core</artifactId>
250                         <version>3.0.5</version>
251                 </dependency>
252                 <dependency>
253                         <groupId>org.apache.tiles</groupId>
254                         <artifactId>tiles-jsp</artifactId>
255                         <version>3.0.5</version>
256                 </dependency>
257                 <dependency>
258                         <groupId>org.apache.cxf</groupId>
259                         <artifactId>cxf-rt-rs-client</artifactId>
260                         <version>3.0.0-milestone1</version>
261                 </dependency>
262                 <!-- Mapper -->
263                 <dependency>
264                         <groupId>com.fasterxml.jackson.core</groupId>
265                         <artifactId>jackson-annotations</artifactId>
266                         <version>${fasterxml.version}</version>
267                 </dependency>
268                 <dependency>
269                         <groupId>com.fasterxml.jackson.core</groupId>
270                         <artifactId>jackson-core</artifactId>
271                         <version>${fasterxml.version}</version>
272                 </dependency>
273                 <dependency>
274                         <groupId>com.fasterxml.jackson.core</groupId>
275                         <artifactId>jackson-databind</artifactId>
276                         <version>${fasterxml.version}</version>
277                 </dependency>
278                 <dependency>
279                         <groupId>postgresql</groupId>
280                         <artifactId>postgresql</artifactId>
281                         <version>9.1-901-1.jdbc4</version>
282                 </dependency>
283                 <!-- Elastic Search -->
284                 <dependency>
285                         <groupId>org.elasticsearch</groupId>
286                         <artifactId>elasticsearch</artifactId>
287                         <version>2.2.0</version>
288                 </dependency>
289                 <dependency>
290                         <groupId>io.searchbox</groupId>
291                         <artifactId>jest</artifactId>
292                         <version>2.0.0</version>
293                 </dependency>
294                 <dependency>
295                         <groupId>org.apache.jcs</groupId>
296                         <artifactId>jcs</artifactId>
297                         <version>1.3</version>
298                         <exclusions>
299                                 <exclusion>
300                                         <groupId>*</groupId>
301                                         <artifactId>*</artifactId>
302                                 </exclusion>
303                         </exclusions>
304                 </dependency>
305                 <dependency>
306                         <groupId>org.apache.tomcat</groupId>
307                         <artifactId>tomcat-websocket</artifactId>
308                         <version>8.0.28</version>
309                         <scope>provided</scope>
310                 </dependency>
311                 <dependency>
312                         <groupId>concurrent</groupId>
313                         <artifactId>concurrent</artifactId>
314                         <version>1.3.2</version>
315                         <exclusions>
316                                 <exclusion>
317                                         <groupId>*</groupId>
318                                         <artifactId>*</artifactId>
319                                 </exclusion>
320                         </exclusions>
321                 </dependency>
322                 <dependency>
323                         <groupId>commons-lang</groupId>
324                         <artifactId>commons-lang</artifactId>
325                         <version>2.6</version>
326                 </dependency>
327                 <!-- for generating excel/csv/excelx -->
328                 <dependency>
329                         <groupId>org.apache.poi</groupId>
330                         <artifactId>poi</artifactId>
331                         <version>3.5-FINAL</version>
332                         <exclusions>
333                                 <exclusion>
334                                         <groupId>commons-logging</groupId>
335                                         <artifactId>commons-logging</artifactId>
336                                 </exclusion>
337                                 <exclusion>
338                                         <groupId>log4j</groupId>
339                                         <artifactId>log4j</artifactId>
340                                 </exclusion>
341                         </exclusions>
342                 </dependency>
343                 <dependency>
344                         <groupId>org.apache.poi</groupId>
345                         <artifactId>poi-ooxml</artifactId>
346                         <version>3.5-FINAL</version>
347                         <exclusions>
348                                 <exclusion>
349                                         <groupId>commons-logging</groupId>
350                                         <artifactId>commons-logging</artifactId>
351                                 </exclusion>
352                                 <exclusion>
353                                         <groupId>log4j</groupId>
354                                         <artifactId>log4j</artifactId>
355                                 </exclusion>
356                         </exclusions>
357                 </dependency>
358                 <dependency>
359                         <groupId>org.apache.poi</groupId>
360                         <artifactId>poi-scratchpad</artifactId>
361                         <version>3.5-FINAL</version>
362                         <exclusions>
363                                 <exclusion>
364                                         <groupId>commons-logging</groupId>
365                                         <artifactId>commons-logging</artifactId>
366                                 </exclusion>
367                                 <exclusion>
368                                         <groupId>log4j</groupId>
369                                         <artifactId>log4j</artifactId>
370                                 </exclusion>
371                         </exclusions>
372                 </dependency>
373                 <dependency>
374                         <groupId>org.apache.poi</groupId>
375                         <artifactId>poi-contrib</artifactId>
376                         <version>3.5-FINAL</version>
377                         <exclusions>
378                                 <exclusion>
379                                         <groupId>commons-logging</groupId>
380                                         <artifactId>commons-logging</artifactId>
381                                 </exclusion>
382                                 <exclusion>
383                                         <groupId>log4j</groupId>
384                                         <artifactId>log4j</artifactId>
385                                 </exclusion>
386                         </exclusions>
387                 </dependency>
388                 <!-- for generating PDF -->
389                 <dependency>
390                         <groupId>com.lowagie</groupId>
391                         <artifactId>itext</artifactId>
392                         <version>2.0.8</version>
393                 </dependency>
394                 <!-- Quartz -->
395                 <dependency>
396                         <groupId>org.quartz-scheduler</groupId>
397                         <artifactId>quartz</artifactId>
398                         <version>2.2.1</version>
399                         <exclusions>
400                                 <!-- SDK brings a new version of c3p0 -->
401                                 <exclusion>
402                                         <groupId>c3p0</groupId>
403                                         <artifactId>c3p0</artifactId>
404                                 </exclusion>
405                         </exclusions>
406                 </dependency>
407                 <dependency>
408                         <groupId>org.bouncycastle</groupId>
409                         <artifactId>bcprov-jdk16</artifactId>
410                         <version>1.45</version>
411                 </dependency>
412                 <dependency>
413                         <groupId>commons-codec</groupId>
414                         <artifactId>commons-codec</artifactId>
415                         <version>1.9</version>
416                 </dependency>
417                 <dependency>
418                         <groupId>com.att.nsa</groupId>
419                         <artifactId>cambriaClient</artifactId>
420                         <version>0.0.1</version>
421                         <exclusions>
422                                 <exclusion>
423                                         <groupId>commons-logging</groupId>
424                                         <artifactId>commons-logging</artifactId>
425                                 </exclusion>
426                                 <exclusion>
427                                         <groupId>log4j</groupId>
428                                         <artifactId>log4j</artifactId>
429                                 </exclusion>
430                                 <exclusion>
431                                         <groupId>log4j</groupId>
432                                         <artifactId>apache-log4j-extras</artifactId>
433                                 </exclusion>
434                                 <exclusion>
435                                         <groupId>org.slf4j</groupId>
436                                         <artifactId>slf4j-log4j12</artifactId>
437                                 </exclusion>
438                         </exclusions>
439                 </dependency>
440                 <dependency>
441                         <groupId>org.onap.portal.sdk</groupId>
442                         <artifactId>epsdk-fw</artifactId>
443                         <version>${epsdk.version}</version>
444                         <exclusions>
445                                 <exclusion>
446                                         <groupId>commons-logging</groupId>
447                                         <artifactId>commons-logging</artifactId>
448                                 </exclusion>
449                                 <exclusion>
450                                         <groupId>log4j</groupId>
451                                         <artifactId>log4j</artifactId>
452                                 </exclusion>
453                                 <exclusion>
454                                         <groupId>log4j</groupId>
455                                         <artifactId>apache-log4j-extras</artifactId>
456                                 </exclusion>
457                                 <exclusion>
458                                         <groupId>org.slf4j</groupId>
459                                         <artifactId>slf4j-log4j12</artifactId>
460                                 </exclusion>
461                         </exclusions>
462                 </dependency>
463                 <dependency>
464                         <groupId>org.onap.portal.sdk</groupId>
465                         <artifactId>epsdk-core</artifactId>
466                         <version>${epsdk.version}</version>
467                         <exclusions>
468                                 <exclusion>
469                                         <groupId>mysql</groupId>
470                                         <artifactId>mysql-connector-java</artifactId>
471                                 </exclusion>
472                         </exclusions>
473                 </dependency>
474                 <dependency>
475                         <groupId>org.onap.portal.sdk</groupId>
476                         <artifactId>epsdk-app-common</artifactId>
477                         <version>${epsdk.version}</version>
478                 </dependency>
479                 <dependency>
480                         <groupId>org.onap.portal.sdk</groupId>
481                         <artifactId>epsdk-workflow</artifactId>
482                         <version>${epsdk.version}</version>
483                 </dependency>
484                 <!-- Raptor required Libraries -->
485                 <!-- for static charts -->
486                 <dependency>
487                         <groupId>org.onap.portal.sdk</groupId>
488                         <artifactId>epsdk-analytics</artifactId>
489                         <version>${epsdk.version}</version>
490                 </dependency>
491                 <!-- Referenced by some poms and needed for testing; do NOT use "test" 
492                         scope here. -->
493                 <dependency>
494                         <groupId>org.apache.httpcomponents</groupId>
495                         <artifactId>httpclient</artifactId>
496                         <version>4.5.2</version>
497                 </dependency>
498                 <!-- for testing -->
499                 <dependency>
500                         <groupId>junit</groupId>
501                         <artifactId>junit</artifactId>
502                         <version>4.11</version>
503                         <scope>test</scope>
504                 </dependency>
505                 <dependency>
506                         <groupId>org.powermock</groupId>
507                         <artifactId>powermock-api-mockito</artifactId>
508                         <version>1.6.1</version>
509                 </dependency>
510                 <dependency>
511                         <groupId>org.powermock</groupId>
512                         <artifactId>powermock-core</artifactId>
513                         <version>1.6.1</version>
514                 </dependency>
515                 <dependency>
516                         <groupId>org.powermock</groupId>
517                         <artifactId>powermock-module-junit4</artifactId>
518                         <version>1.6.1</version>
519                 </dependency>
520                 <dependency>
521                         <groupId>org.mockito</groupId>
522                         <artifactId>mockito-core</artifactId>
523                         <version>1.8.5</version>
524                 </dependency>
525                 <dependency>
526                         <groupId>commons-beanutils</groupId>
527                         <artifactId>commons-beanutils</artifactId>
528                         <version>1.9.2</version>
529                 </dependency>
530                 <dependency>
531                         <groupId>com.ecwid.consul</groupId>
532                         <artifactId>consul-api</artifactId>
533                         <version>1.2.1</version>
534                 </dependency>
535                 <dependency>
536                         <groupId>com.orbitz.consul</groupId>
537                         <artifactId>consul-client</artifactId>
538                         <version>0.13.8</version>
539                 </dependency>
540                 <dependency>
541                         <groupId>commons-fileupload</groupId>
542                         <artifactId>commons-fileupload</artifactId>
543                         <version>1.3</version>
544                 </dependency>
545                 <dependency>
546                         <groupId>io.springfox</groupId>
547                         <artifactId>springfox-swagger2</artifactId>
548                         <version>2.7.0</version>
549                 </dependency>
550                 <dependency>
551                         <groupId>io.springfox</groupId>
552                         <artifactId>springfox-swagger-ui</artifactId>
553                         <version>2.7.0</version>
554                 </dependency>
555                 <!-- Schedulers required Libraries -->
556                 <dependency>
557                         <groupId>com.googlecode.json-simple</groupId>
558                         <artifactId>json-simple</artifactId>
559                         <version>1.1.1</version>
560                 </dependency>
561                 <dependency>
562                         <groupId>org.glassfish.jersey.core</groupId>
563                         <artifactId>jersey-client</artifactId>
564                         <version>2.23.1</version>
565                 </dependency>
566                 <dependency>
567                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
568                         <artifactId>jackson-jaxrs-json-provider</artifactId>
569                         <version>2.6.3</version>
570                 </dependency>
571                 <dependency>
572                         <groupId>org.glassfish.jersey.connectors</groupId>
573                         <artifactId>jersey-jetty-connector</artifactId>
574                         <version>2.23.1</version>
575                 </dependency>
576                 <!-- Jacoco for offline instrumentation -->
577                 <dependency>
578                         <groupId>org.jacoco</groupId>
579                         <artifactId>org.jacoco.agent</artifactId>
580                         <version>${jacocoVersion}</version>
581                         <classifier>runtime</classifier>
582                 </dependency>
583                 <dependency>
584              <groupId>org.owasp.esapi</groupId>
585              <artifactId>esapi</artifactId>
586              <version>2.1.0.1</version>
587         </dependency>
588         <dependency>
589                     <groupId>org.springframework.security</groupId>
590                     <artifactId>spring-security-core</artifactId>
591                     <version>${springframework.version}</version>
592             </dependency>
593             <dependency>
594                 <groupId>org.springframework.security</groupId>
595                 <artifactId>spring-security-web</artifactId>
596                 <version>${springframework.version}</version>
597         </dependency>
598             <dependency>
599                     <groupId>org.springframework.security</groupId>
600                     <artifactId>spring-security-config</artifactId>
601                     <version>${springframework.version}</version>
602             </dependency>
603                 
604         </dependencies>
605
606 </project>