You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2022/05/29 07:29:19 UTC

[commons-numbers] 04/05: Ignore generated files from checkstyle

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

commit 46c59a12c6538aba0b4147a82754671fc7893610
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Sun May 29 08:22:50 2022 +0100

    Ignore generated files from checkstyle
---
 commons-numbers-examples/examples-jmh/pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/commons-numbers-examples/examples-jmh/pom.xml b/commons-numbers-examples/examples-jmh/pom.xml
index 4b9621e6..0d9dbdba 100644
--- a/commons-numbers-examples/examples-jmh/pom.xml
+++ b/commons-numbers-examples/examples-jmh/pom.xml
@@ -124,6 +124,13 @@
           </sourceFileExcludes>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+        <configuration>
+          <excludes>**/jmh_generated/*.java</excludes>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 
@@ -141,6 +148,13 @@
           </sourceFileExcludes>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+        <configuration>
+          <excludes>**/jmh_generated/*.java</excludes>
+        </configuration>
+      </plugin>
     </plugins>
   </reporting>