We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91b8b16 commit 7688eb9Copy full SHA for 7688eb9
src/main/java/org/apache/maven/plugins/checkstyle/exec/DefaultCheckstyleExecutor.java
@@ -313,6 +313,13 @@ public URLClassLoader run()
313
try
314
{
315
checker.setClassLoader( projectClassLoader );
316
+ /*
317
+ * MCHECKSTYLE-387: If the previous method call was successful, emit a warning that the user is using
318
+ * an old version of checkstyle.
319
+ */
320
+ getLogger().warn( "Old version of checkstyle detected. Consider updating to >= v8.30" );
321
+ getLogger().warn( "For more information see: "
322
+ + "https://maven.apache.org/plugins/maven-checkstyle-plugin/examples/upgrading-checkstyle.html" );
323
}
324
catch ( NoSuchMethodError ignored )
325
0 commit comments