我正在设置maven-checkstyle-plugin 2.15,但是在构建过程中会忽略排除项。 2.12版本忽略了排除项。你能帮我吗?
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.15</version>
<configuration>
<excludes>**/target/**</excludes>
<excludes>**/generated/**/*</excludes>
<excludes>**/generated-sources/**/*</excludes>
<excludes>**/vodafone-sdk/**/*</excludes>
<!-- file located in myapplication-parent project -->
<configLocation>`resources/checks.xml</configLocation>
</configuration>
</plugin>