Make maven and gradle share checkstyle configuration

This commit is contained in:
thomasperkins1123 2024-02-14 01:56:03 +00:00 committed by Dave Syer
parent da1c93d367
commit a2f1ad5503
4 changed files with 13 additions and 13 deletions

View file

@ -198,10 +198,12 @@
<phase>validate</phase>
<configuration>
<configLocation>src/checkstyle/nohttp-checkstyle.xml</configLocation>
<suppressionsLocation>src/checkstyle/nohttp-checkstyle-suppressions.xml</suppressionsLocation>
<sourceDirectories>${basedir}</sourceDirectories>
<includes>**/*</includes>
<excludes>**/.git/**/*,**/.idea/**/*,**/target/**/,**/.flattened-pom.xml,**/*.class</excludes>
<propertyExpansion>
config_loc=${basedir}/src/checkstyle/
</propertyExpansion>
</configuration>
<goals>
<goal>check</goal>