Resolving Codenarc Compilation Warnings
After seeing several developers on my team make simple style errors, I looked into updating our custom codenarc ruleset. Most of the rules were turned off and it had not been updated in almost 10 minor releases. In general, the updates were wonderful. The code is cleaner and new pull requests are much easier to read! After the update; however, I noticed pages of warnings all in the style:
The task was still passing so I kept going for a while and made a note to fix it later. Recently, I was digging through the Codenarc docs again and came across this:
NOTE: If a rule requiring a later compiler phase is included in the active CodeNarc ruleset and enabled and one or more of the required classes is not on the classpath, then CodeNarc will log a Log4J WARN message for each source file that contains the missing references.
in the section on Enhanced Classpath Rules
According to the documentation, the Grails plugin and Ant task support the enhanced rules, but our configuration uses the Gradle codenarc plugin which does not. I turned off the enhanced rules and the warnings resolved. If you are using Codenarc 0.19+ and you are seeing this error, this might be the problem for you too.