We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 754e7af commit c993abcCopy full SHA for c993abc
pom.xml
@@ -348,6 +348,9 @@
348
<goals>
349
<goal>jar</goal>
350
</goals>
351
+ <configuration>
352
+ <additionalparam>${javadoc.opts}</additionalparam>
353
+ </configuration>
354
</execution>
355
</executions>
356
</plugin>
@@ -368,6 +371,15 @@
368
371
</plugins>
369
372
</build>
370
373
</profile>
374
+ <profile>
375
+ <id>java8-disable-doclint</id>
376
+ <activation>
377
+ <jdk>[1.8,)</jdk>
378
+ </activation>
379
+ <properties>
380
+ <javadoc.opts>-Xdoclint:none</javadoc.opts>
381
+ </properties>
382
+ </profile>
383
</profiles>
384
385
</project>
0 commit comments