在将maven项目导入
Eclipse Luna之后,在修改方法后保存时会弹出以下错误:
cannot initialize module TreeWalker – Unable to instantiate JUnitTestCase
JUnitTestCase指的是checkstyle xml文件中的一个模块:
<module name="JUnitTestCase"/>
我已经安装了“Checkstyle配置插件M2Eclipse”和“Checkstyle Plug-in 6.4.0”.我的pom文件中的’maven-checkstyle-plugin’的插件定义指定了2.10版本.
注意:我意识到这是类似于一些其他问题,具有相同的错误(但指定了不同的模块),但是我还没有找到令人满意的解决方案.我相信我可以删除checkstyle配置文件中的模块条目,但我要求它按照设计工作,这不是最佳选择.
解决方法
JUnitTestCase为
removed in Checkstyle 6.2(查看“向下兼容性”).所以你应该降级到Checkstyle 6.1.1,或从checkstyle.xml中删除模块引用.