Is anyone else having trouble with the maven-checkstyle-plugin with maven 3.0?
Specifically with using a custom rule set. The following snippet would find our
custom rules in 2.2.1 but does not in 3.0.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.6</version>
<configuration>
<violationSeverity>warning</violationSeverity>
<consoleOutput>true</consoleOutput>
</configuration>
<executions>
<execution>
<id>checkstyle-main</id>
<phase>verify</phase>
<goals><goal>check</goal></goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>groupid.of.rules</groupId>
<artifactId>artifactid.of.rules</artifactId>
<version>version.of.rules</version>
</dependency>
</dependencies>
</plugin>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]