Hi,
I want to use the maven-checkstyle-plugin with a custom checker
configuration xml file as :
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.1</version>
<configuration>
<configLocation>${project.parent.basedir
}/src/main/config/checkstyle.xml</configLocation>
</configuration>
</plugin>
I wonder if it is possible to know if checkstyle really uses my custom
checker configuration xml file and only this checker configuration.
Even with mvn site -X, it is not clear to understand which checker
configuration is used.
Rémy