Skip to content

Commit

Permalink
Ignore lack of comments in the LocalizedFormats class on JDK 17
Browse files Browse the repository at this point in the history
  • Loading branch information
aherbert committed Sep 21, 2023
1 parent 95b244c commit 62d5775
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions commons-math-legacy-exception/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

0 comments on commit 62d5775

Please sign in to comment.