I'm using beta-3 and i'm not able to configure the checkstyle plugin to use my own checkstyle.xml configuration. I have in my pom:
<reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <propertiesFile>checkstyle.xml</propertiesFile> <headerFile>license.txt</headerFile> </configuration> </plugin> </plugins> </reporting> I've also looked at the plugin source and it looks like it only checks for the format parameter to choose the style, it doesn't look at the propertiesFile parameter for that, in fact, it seems that the propertiesFile has another usage now. Any ideas ? Thanks Hugo
