This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 875ae2c [CAMEL-14578] Ignore generated files for source checks 875ae2c is described below commit 875ae2ccdefe4374032fb917aa7af717b8dadec9 Author: Guillaume Nodet <gno...@gmail.com> AuthorDate: Tue Aug 18 19:50:15 2020 +0200 [CAMEL-14578] Ignore generated files for source checks --- core/camel-main/pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/core/camel-main/pom.xml b/core/camel-main/pom.xml index 7edbe4f..53f8668 100644 --- a/core/camel-main/pom.xml +++ b/core/camel-main/pom.xml @@ -159,6 +159,20 @@ </execution> </executions> </plugin> + <plugin> + <groupId>net.revelc.code</groupId> + <artifactId>impsort-maven-plugin</artifactId> + <configuration> + <excludes>**/package-info.java,**/MySecondFooConfigurer.java,**/MySecondBarConfigurer.java</excludes> + </configuration> + </plugin> + <plugin> + <groupId>net.revelc.code.formatter</groupId> + <artifactId>formatter-maven-plugin</artifactId> + <configuration> + <excludes>**/MySecondFooConfigurer.java,**/MySecondBarConfigurer.java</excludes> + </configuration> + </plugin> </plugins> </build>