This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git


The following commit(s) were added to refs/heads/master by this push:
     new 5b91702d Do not fail on javadoc warnings in the JMH module
5b91702d is described below

commit 5b91702dbc7fc844db953722645fc8a90126fc10
Author: Alex Herbert <aherb...@apache.org>
AuthorDate: Sun Jun 26 21:22:17 2022 +0100

    Do not fail on javadoc warnings in the JMH module
---
 commons-numbers-examples/examples-jmh/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/commons-numbers-examples/examples-jmh/pom.xml 
b/commons-numbers-examples/examples-jmh/pom.xml
index 21200690..6d0cc205 100644
--- a/commons-numbers-examples/examples-jmh/pom.xml
+++ b/commons-numbers-examples/examples-jmh/pom.xml
@@ -132,6 +132,12 @@
           <excludes>**/jmh_generated/*.java</excludes>
         </configuration>
       </plugin>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <failOnWarnings>false</failOnWarnings>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 
@@ -156,6 +162,12 @@
           <excludes>**/jmh_generated/*.java</excludes>
         </configuration>
       </plugin>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <failOnWarnings>false</failOnWarnings>
+        </configuration>
+      </plugin>
     </plugins>
   </reporting>
 

Reply via email to