Ignore lack of comments in the LocalizedFormats class on JDK 17
This commit is contained in:
parent
95b244cb1f
commit
62d5775863
|
@ -51,4 +51,34 @@
|
|||
|
||||
</dependencies>
|
||||
|
||||
<profiles>
|
||||
<!-- Ignore lack of comments in the LocalizedFormats class -->
|
||||
<profile>
|
||||
<id>jdk17-javadoc</id>
|
||||
<activation>
|
||||
<jdk>[17</jdk>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<failOnWarnings>false</failOnWarnings>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<failOnWarnings>false</failOnWarnings>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue