fb0b985d78ef12767f46b787ae3cd5813656009a
[aai/aai-common.git] / aai-core / pom.xml
1 <?xml version="1.0"?>
2 <project
3                 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4                 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5         <modelVersion>4.0.0</modelVersion>
6         <parent>
7           <groupId>org.onap.aai.aai-common</groupId>
8           <artifactId>aai-common</artifactId>
9           <version>1.1.0-SNAPSHOT</version>
10         </parent>
11         <artifactId>aai-core</artifactId>
12         <name>aai-core</name>
13         <packaging>jar</packaging>
14         <properties>
15                 <maven.compiler.target>1.8</maven.compiler.target>
16                 <maven.compiler.source>1.8</maven.compiler.source>
17                 <nexusproxy>https://nexus.onap.org</nexusproxy>
18                 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
19                 <sonar.language>java</sonar.language>
20                 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
21                 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
22                 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
23                 <sonar.jacoco.reportMissing.force.zero>false</sonar.jacoco.reportMissing.force.zero>
24                 <sonar.projectVersion>${project.version}</sonar.projectVersion>
25                 <gendoc.version>v10</gendoc.version>
26                 <aai.wiki.link>https://wiki.onap.org/</aai.wiki.link>
27         </properties>
28         <profiles>              
29                 <profile>
30                         <id>generateXsd</id>
31                         <build>
32                                 <plugins>
33                                         <plugin>
34                                                 <groupId>org.codehaus.mojo</groupId>
35                                                 <artifactId>exec-maven-plugin</artifactId>
36                                                 <version>1.1.1</version>
37                                                 <executions>
38                                                         <execution>
39                                                                 <phase>process-classes</phase>
40                                                                 <goals>
41                                                                         <goal>java</goal>
42                                                                 </goals>
43                                                                 <configuration>
44                                                                         <mainClass>org.openecomp.aai.util.GenerateXsd</mainClass>
45                                                                         <systemProperties>
46                                                             <systemProperty>
47                                                                 <key>gen_version</key>
48                                                                 <value>${gendoc.version}</value>
49                                                             </systemProperty>
50                                                             <systemProperty>
51                                                                 <key>gen_type</key>
52                                                                 <value>XSD</value>
53                                                             </systemProperty>
54                                                             <systemProperty>
55                                                                 <key>yamlresponses_url</key>
56                                                                 <value></value>
57                                                             </systemProperty>
58                                                             <systemProperty>
59                                                                 <key>yamlresponses_label</key>
60                                                                 <value></value>
61                                                             </systemProperty>                                                       
62                                                         </systemProperties>
63                                                                 </configuration>
64                                                         </execution>
65                                                 </executions>
66                                         </plugin>
67                                 </plugins>
68                         </build>
69                 </profile>
70                 <profile>
71                         <id>generateYaml</id>
72                         <build>
73                                 <plugins>
74                                         <plugin>
75                                                 <groupId>org.codehaus.mojo</groupId>
76                                                 <artifactId>exec-maven-plugin</artifactId>
77                                                 <version>1.1.1</version>
78                                                 <executions>
79                                                         <execution>
80                                                                 <phase>process-classes</phase>
81                                                                 <goals>
82                                                                         <goal>java</goal>
83                                                                 </goals>
84                                                                 <configuration>
85                                                                         <mainClass>org.openecomp.aai.util.GenerateXsd</mainClass>
86                                                                         <systemProperties>
87                                                             <systemProperty>
88                                                                 <key>gen_version</key>
89                                                                 <value>${gendoc.version}</value>
90                                                             </systemProperty>
91                                                             <systemProperty>
92                                                                 <key>gen_type</key>
93                                                                 <value>YAML</value>
94                                                             </systemProperty>
95                                                             <systemProperty>
96                                                                 <key>yamlresponses_url</key>
97                                                                 <value>${aai.wiki.link}</value>
98                                                             </systemProperty>
99                                                             <systemProperty>
100                                                                 <key>yamlresponses_label</key>
101                                                                 <value>Response codes found in [response codes]</value>
102                                                             </systemProperty>                                                       
103                                                         </systemProperties>
104                                                                 </configuration>
105                                                         </execution>
106                                                 </executions>
107                                         </plugin>
108                                 </plugins>
109                         </build>
110                 </profile>
111                 <profile>
112                         <id>generateHtml</id>
113                         <build>
114                                 <plugins>
115                                         <plugin>
116                                                 <groupId>org.codehaus.mojo</groupId>
117                                                 <artifactId>exec-maven-plugin</artifactId>
118                                                 <version>1.1.1</version>
119                                                 <executions>
120                                                         <execution>
121                                                                 <phase>process-classes</phase>
122                                                                 <goals>
123                                                                         <goal>java</goal>
124                                                                 </goals>
125                                                                 <configuration>
126                                                                         <mainClass>org.openecomp.aai.util.swagger.GenerateSwagger</mainClass>
127                                     <systemProperties>
128                                         <property>
129                                                                                         <key>aai.generate.version</key>
130                                                                                         <value>${gendoc.version}</value>
131                                                                                 </property>
132                                                                                 <property>
133                                                                                         <key>aai.wiki.link</key>
134                                                                                         <value>${aai.wiki.link}</value>
135                                                                                 </property>
136                                                                         </systemProperties>
137                                                                 </configuration>
138                                                         </execution>
139                                                 </executions>
140                                         </plugin>
141                                 </plugins>
142                         </build>
143                 </profile>
144         </profiles>
145         <dependencies>
146                 <dependency>
147                         <groupId>org.onap.aai.aai-common</groupId>
148                         <artifactId>aai-schema</artifactId>
149                         <version>${aai.schema.version}</version>
150                 </dependency>
151                 <dependency>
152                         <groupId>commons-lang</groupId>
153                         <artifactId>commons-lang</artifactId>
154                         <version>2.6</version>
155                 </dependency>
156                 <dependency>
157                         <groupId>com.att.eelf</groupId>
158                         <artifactId>eelf-core</artifactId>
159                         <version>1.0.0</version>
160                 </dependency>
161                 <dependency>
162                         <groupId>jdk.tools</groupId>
163                         <artifactId>jdk.tools</artifactId>
164                         <version>1.8.0_101</version>
165                         <scope>system</scope>
166                         <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
167                 </dependency>
168                 <dependency>
169                         <groupId>org.codehaus.jackson</groupId>
170                         <artifactId>jackson-core-asl</artifactId>
171                         <version>1.9.13</version>
172                 </dependency>
173
174                 <dependency>
175                         <groupId>org.codehaus.jackson</groupId>
176                         <artifactId>jackson-mapper-asl</artifactId>
177                         <version>1.9.13</version>
178                 </dependency>
179                 <dependency>
180                         <groupId>junit</groupId>
181                         <artifactId>junit</artifactId>
182                         <version>4.12</version>
183                         <scope>test</scope>
184                 </dependency>
185                 <dependency>
186                         <groupId>org.hamcrest</groupId>
187                         <artifactId>hamcrest-junit</artifactId>
188                         <version>2.0.0.0</version>
189                         <scope>test</scope>
190                 </dependency>
191                 <dependency>
192                         <groupId>org.hamcrest</groupId>
193                         <artifactId>hamcrest-core</artifactId>
194                         <version>1.3</version>
195                         <scope>test</scope>
196                 </dependency>
197                 <dependency>
198                         <groupId>org.mockito</groupId>
199                         <artifactId>mockito-all</artifactId>
200                         <version>1.10.19</version>
201                         <scope>test</scope>
202                 </dependency>
203                 <dependency>
204                         <groupId>org.powermock</groupId>
205                         <artifactId>powermock-module-junit4</artifactId>
206                         <version>1.6.2</version>
207                         <scope>test</scope>
208                 </dependency>
209                 <dependency>
210                         <groupId>org.powermock</groupId>
211                         <artifactId>powermock-api-mockito</artifactId>
212                         <version>1.6.2</version>
213                         <scope>test</scope>
214                 </dependency>
215                 <dependency>
216                         <groupId>com.google.guava</groupId>
217                         <artifactId>guava</artifactId>
218                         <version>16.0</version>
219                 </dependency>
220                 <dependency>
221                         <groupId>com.thinkaurelius.titan</groupId>
222                         <artifactId>titan-core</artifactId>
223                         <version>1.0.0</version>
224                         <exclusions>
225                                 <exclusion>
226                                         <groupId>org.slf4j</groupId>
227                                         <artifactId>slf4j-log4j12</artifactId>
228                                 </exclusion>
229                         </exclusions>
230                 </dependency>
231                 <dependency>
232                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
233                         <artifactId>jackson-jaxrs-json-provider</artifactId>
234                         <version>2.1.4</version>
235                 </dependency>
236                 <dependency>
237                         <groupId>com.googlecode.json-simple</groupId>
238                         <artifactId>json-simple</artifactId>
239                         <version>1.1.1</version>
240                 </dependency>
241                 <dependency>
242                         <groupId>org.springframework</groupId>
243                         <artifactId>spring-web</artifactId>
244                         <version>4.2.5.RELEASE</version>
245                 </dependency>
246                 <dependency>
247                         <groupId>javax.xml.bind</groupId>
248                         <artifactId>jaxb-api</artifactId>
249                         <version>2.2.11</version>
250                 </dependency>
251                 <dependency>
252                         <groupId>org.eclipse.persistence</groupId>
253                         <artifactId>eclipselink</artifactId>
254                         <version>2.6.2</version>
255                 </dependency>
256                 <dependency>
257                         <groupId>com.google.code.gson</groupId>
258                         <artifactId>gson</artifactId>
259                         <version>2.7</version>
260                 </dependency>
261                 <dependency>
262                         <groupId>org.eclipse.jetty</groupId>
263                         <artifactId>jetty-util</artifactId>
264                         <version>9.4.2.v20170220</version>
265                 </dependency>
266                 <dependency>
267                         <groupId>org.apache.cxf</groupId>
268                         <artifactId>cxf-core</artifactId>
269                         <version>3.0.6</version>
270                 </dependency>
271                 <dependency>
272                         <groupId>com.fasterxml.jackson.module</groupId>
273                         <artifactId>jackson-module-jaxb-annotations</artifactId>
274                         <version>2.1.4</version>
275                 </dependency>
276                 <dependency>
277                         <groupId>com.sun.jersey</groupId>
278                         <artifactId>jersey-core</artifactId>
279                         <version>1.18</version>
280                 </dependency>
281                 <dependency>
282                         <groupId>com.sun.jersey</groupId>
283                         <artifactId>jersey-client</artifactId>
284                         <version>1.18</version>
285                 </dependency>
286                 <dependency>
287                         <groupId>javax.ws.rs</groupId>
288                         <artifactId>javax.ws.rs-api</artifactId>
289                         <version>2.0.1</version>
290                 </dependency>
291                 <dependency>
292                         <groupId>org.apache.tinkerpop</groupId>
293                         <artifactId>gremlin-core</artifactId>
294                         <version>3.0.1-incubating</version>
295                 </dependency>
296                 <dependency>
297                         <groupId>org.slf4j</groupId>
298                         <artifactId>slf4j-api</artifactId>
299                         <version>1.7.5</version>
300                 </dependency>
301                 <dependency>
302                         <groupId>com.fasterxml.jackson.core</groupId>
303                         <artifactId>jackson-databind</artifactId>
304                         <version>2.1.4</version>
305                 </dependency>
306                 <dependency>
307                         <groupId>com.fasterxml.jackson.core</groupId>
308                         <artifactId>jackson-annotations</artifactId>
309                         <version>2.1.4</version>
310                 </dependency>
311                 <dependency>
312                         <groupId>com.fasterxml.jackson.dataformat</groupId>
313                         <artifactId>jackson-dataformat-yaml</artifactId>
314                         <version>2.1.4</version>
315                 </dependency>
316                 <dependency>
317                         <groupId>xml-apis</groupId>
318                         <artifactId>xml-apis</artifactId>
319                         <version>1.0.b2</version>
320                 </dependency>
321                 <dependency>
322                         <groupId>commons-lang</groupId>
323                         <artifactId>commons-lang</artifactId>
324                         <version>2.6</version>
325                 </dependency>
326                 <dependency>
327                         <groupId>commons-cli</groupId>
328                         <artifactId>commons-cli</artifactId>
329                         <version>1.3</version>
330                 </dependency>
331                 <dependency>
332                         <groupId>com.beust</groupId>
333                         <artifactId>jcommander</artifactId>
334                         <version>1.48</version>
335                 </dependency>
336                 <dependency>
337                         <groupId>org.json</groupId>
338                         <artifactId>json</artifactId>
339                         <version>20160810</version>
340                 </dependency>
341                 <dependency>
342                         <groupId>javax.servlet</groupId>
343                         <artifactId>javax.servlet-api</artifactId>
344                         <version>3.1.0</version>
345                 </dependency>
346                 <dependency>
347                         <groupId>com.bazaarvoice.jolt</groupId>
348                         <artifactId>jolt-complete</artifactId>
349                         <version>0.0.24</version>
350                 </dependency>
351                 <dependency>
352                         <groupId>ch.qos.logback</groupId>
353                         <artifactId>logback-core</artifactId>
354                         <version>1.1.7</version>
355                 </dependency>
356                 <dependency>
357                         <groupId>ch.qos.logback</groupId>
358                         <artifactId>logback-classic</artifactId>
359                         <version>1.1.7</version>
360                 </dependency>
361                 <dependency>
362                         <groupId>ch.qos.logback</groupId>
363                         <artifactId>logback-access</artifactId>
364                         <version>1.1.7</version>
365                 </dependency>
366                 <dependency>
367                         <groupId>org.apache.hbase</groupId>
368                         <artifactId>hbase-client</artifactId>
369                         <version>0.98.4-hadoop2</version>
370                         <exclusions>
371                                 <exclusion>
372                                         <groupId>org.slf4j</groupId>
373                                         <artifactId>slf4j-log4j12</artifactId>
374                                 </exclusion>
375                                 <exclusion>
376                                         <artifactId>log4j</artifactId>
377                                         <groupId>log4j</groupId>
378                                 </exclusion>
379                         </exclusions>
380                 </dependency>
381                 <dependency>
382                         <groupId>org.apache.hbase</groupId>
383                         <artifactId>hbase-protocol</artifactId>
384                         <version>0.98.4-hadoop2</version>
385                         <exclusions>
386                                 <exclusion>
387                                         <artifactId>log4j</artifactId>
388                                         <groupId>log4j</groupId>
389                                 </exclusion>
390                         </exclusions>
391                 </dependency>
392                 <dependency>
393                         <groupId>org.apache.hbase</groupId>
394                         <artifactId>hbase-common</artifactId>
395                         <version>0.98.4-hadoop2</version>
396                         <exclusions>
397                                 <exclusion>
398                                         <artifactId>log4j</artifactId>
399                                         <groupId>log4j</groupId>
400                                 </exclusion>
401                         </exclusions>
402                 </dependency>
403                 <dependency>
404                         <groupId>org.apache.activemq</groupId>
405                         <artifactId>activemq-broker</artifactId>
406                         <version>5.14.4</version>
407                 </dependency>
408
409                 <dependency>
410                         <groupId>com.opencsv</groupId>
411                         <artifactId>opencsv</artifactId>
412                         <version>3.1</version>
413                 </dependency>
414                 <dependency>
415                         <groupId>org.freemarker</groupId>
416                         <artifactId>freemarker</artifactId>
417                         <version>2.3.14</version>
418                 </dependency>
419                 <dependency>
420                         <groupId>com.bazaarvoice.jolt</groupId>
421                         <artifactId>jolt-complete</artifactId>
422                         <version>0.0.24</version>
423                 </dependency>
424                 <dependency>
425                         <groupId>org.mockito</groupId>
426                         <artifactId>mockito-all</artifactId>
427                         <version>1.10.19</version>
428                         <scope>test</scope>
429                 </dependency>
430                 <dependency>
431                         <groupId>org.powermock</groupId>
432                         <artifactId>powermock-module-junit4</artifactId>
433                         <version>1.6.2</version>
434                         <scope>test</scope>
435                 </dependency>
436                 <dependency>
437                         <groupId>org.powermock</groupId>
438                         <artifactId>powermock-api-mockito</artifactId>
439                         <version>1.6.2</version>
440                         <scope>test</scope>
441                 </dependency>
442                 <dependency>
443                         <groupId>org.powermock</groupId>
444                         <artifactId>powermock-module-javaagent</artifactId>
445                         <version>1.6.2</version>
446                         <scope>test</scope>
447                 </dependency>
448         </dependencies>
449
450         <build>
451                 <plugins>
452                         <plugin>
453                                 <groupId>org.codehaus.mojo</groupId>
454                                 <artifactId>sonar-maven-plugin</artifactId>
455                                 <version>3.2</version>
456                         </plugin>
457                         <plugin>
458                                 <groupId>org.jacoco</groupId>
459                                 <artifactId>jacoco-maven-plugin</artifactId>
460                                 <version>0.7.7.201606060606</version>
461                                 <configuration>
462                                         <dumpOnExit>true</dumpOnExit>
463                                 </configuration>
464                                 <executions>
465                                         <execution>
466                                                 <id>jacoco-initialize-unit-tests</id>
467                                                 <goals>
468                                                         <goal>prepare-agent</goal>
469                                                 </goals>
470                                                 <configuration>
471                                                         <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
472                                                         <!-- <append>true</append> -->
473                                                 </configuration>
474                                         </execution>
475                                 </executions>
476                         </plugin>
477                         <plugin>
478                           <groupId>org.apache.maven.plugins</groupId>
479                           <artifactId>maven-site-plugin</artifactId>
480                           <version>3.6</version>
481                           <dependencies>
482                             <dependency>
483                               <groupId>org.apache.maven.wagon</groupId>
484                               <artifactId>wagon-webdav-jackrabbit</artifactId>
485                               <version>2.10</version>
486                             </dependency>
487                           </dependencies>
488                         </plugin>
489                         <plugin>
490                                         <groupId>org.codehaus.mojo</groupId>
491                                         <artifactId>license-maven-plugin</artifactId>
492                                         <version>1.12</version>
493                                         <configuration>
494                                                 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
495                                                 <licenseName>apache_v2</licenseName>
496                                                 <inceptionYear>2017</inceptionYear>
497                                                 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
498                                                 <projectName>org.openecomp.aai</projectName>
499                                                 <canUpdateCopyright>true</canUpdateCopyright>
500                                                 <canUpdateDescription>true</canUpdateDescription>
501                                                 <canUpdateLicense>true</canUpdateLicense>
502                                                 <emptyLineAfterHeader>true</emptyLineAfterHeader>
503                                                 <processStartTag>============LICENSE_START=======================================================</processStartTag>
504                                                 <processEndTag>============LICENSE_END=========================================================</processEndTag>
505                                                 <sectionDelimiter>================================================================================</sectionDelimiter>
506                                                 <includes>
507                                                         <include>**/*.java</include>
508                                                         <include>**/*.ksh</include>
509                                                         <include>**/*.sh</include>
510                                                         <include>**/*.ftl</include>
511                                                         <include>**/*.xsd</include>
512                                                         <include>**/*.xjb</include>
513                                                         <include>**/aai*.xml</include>
514                                                         <include>**/*logback*.xml</include>
515                                                         <include>**/*aaiconfig*.properties</include>
516                                                         <include>**/*titan*.properties</include>
517                                                 </includes>
518                                         </configuration>
519                                         <executions>
520                                                 <execution>
521                                                         <id>first</id>
522                                                         <goals>
523                                                                 <goal>update-file-header</goal>
524                                                         </goals>
525                                                         <phase>process-sources</phase>
526                                                 </execution>
527                                         </executions>
528                                 </plugin>
529                         <plugin>
530                 <groupId>org.apache.maven.plugins</groupId>
531                                 <artifactId>maven-surefire-plugin</artifactId>
532                                 <version>2.12.4</version>
533                                 <configuration>
534                                         <argLine>-noverify ${argLine}</argLine>
535                     <systemPropertyVariables>
536                                                 <AJSC_HOME>.</AJSC_HOME>
537                                                 <BUNDLECONFIG_DIR>bundleconfig-local</BUNDLECONFIG_DIR>
538                                         </systemPropertyVariables>
539                                 </configuration>
540                         </plugin>
541         <plugin>
542                 <groupId>org.apache.maven.plugins</groupId>
543                 <artifactId>maven-deploy-plugin</artifactId>
544                 <executions>
545                         <execution>
546                         <id>default-deploy</id>
547                         <phase>none</phase>
548                         </execution>
549                         </executions>
550                 </plugin>
551                 <plugin>
552                     <groupId>org.sonatype.plugins</groupId>
553                     <artifactId>nexus-staging-maven-plugin</artifactId>
554                     <version>1.6.7</version>
555                     <extensions>true</extensions>
556                     <configuration>
557                         <nexusUrl>${nexusproxy}</nexusUrl>
558                         <stagingProfileId>176c31dfe190a</stagingProfileId>
559                         <serverId>ecomp-staging</serverId>
560                     </configuration>
561                 </plugin>
562                 </plugins>
563         </build>
564
565         <distributionManagement>
566                 <repository>
567                         <id>ecomp-releases</id>
568                         <name>ECOMP Release Repository</name>
569                         <url>${nexusproxy}/content/repositories/releases/</url>
570                 </repository>
571                 <snapshotRepository>
572                         <id>ecomp-snapshots</id>
573                         <name>ECOMP Snapshot Repository</name>
574                         <url>${nexusproxy}/content/repositories/snapshots/</url>
575                 </snapshotRepository>
576                 <site>
577                         <id>ecomp-site</id>
578                         <url>dav:${nexusproxy}${sitePath}</url>
579                 </site>
580         </distributionManagement>
581
582         <!-- Plugins and repositories -->
583         <pluginRepositories>
584                 <pluginRepository>
585                         <id>central</id>
586                         <url>http://repo1.maven.org/maven2</url>
587                 </pluginRepository>
588                 <pluginRepository>
589                         <id>EvoSuite</id>
590                         <name>EvoSuite Repository</name>
591                         <url>http://www.evosuite.org/m2</url>
592                 </pluginRepository>
593         </pluginRepositories>
594
595         <repositories>
596                 <repository>
597                         <id>AJSC</id>
598                         <name>AJSC repository</name>
599                         <url>https://mvnrepository.com/artifact/com.att.ajsc</url>
600                 </repository>
601                 <repository>
602                         <id>restlet</id>
603                         <name>maven reslet</name>
604                         <url>https://maven.restlet.com/</url>
605                 </repository>
606
607                 <repository>
608                         <id>central</id>
609                         <name>Maven 2 repository 2</name>
610                         <url>http://repo2.maven.org/maven2/</url>
611                 </repository>
612                 <repository>
613                         <id>ecomp-releases</id>
614                         <name>ECOMP Release Repository</name>
615                         <url>${nexusproxy}/content/repositories/releases/</url>
616                 </repository>
617                 <repository>
618                         <id>ecomp-staging</id>
619                         <name>ECOMP Staging Repository</name>
620                         <url>${nexusproxy}/content/repositories/staging/</url>
621                 </repository>
622                 <repository>
623                         <id>ecomp-snapshots</id>
624                         <name>ECOMP Snapshot Repository</name>
625                         <url>${nexusproxy}/content/repositories/snapshots/</url>
626                 </repository>
627         </repositories>
628         <reporting>
629           <plugins>
630             <plugin>
631               <groupId>org.apache.maven.plugins</groupId>
632               <artifactId>maven-javadoc-plugin</artifactId>
633               <version>2.10.4</version>
634               <configuration>
635                 <failOnError>false</failOnError>
636                 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
637                 <docletArtifact>
638                   <groupId>org.umlgraph</groupId>
639                   <artifactId>umlgraph</artifactId>
640                   <version>5.6</version>
641                 </docletArtifact>
642                 <additionalparam>-views</additionalparam>
643                 <useStandardDocletOptions>true</useStandardDocletOptions>
644               </configuration>
645             </plugin>
646           </plugins>
647         </reporting>
648 </project>