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