英文:
Removing or replacing findbugs, PMD, checkStyle plugins android
问题
我正在使用一个应用程序的克隆版本,该版本使用了FindBugs、PMD和CheckStyle插件。
但现在,我已经进行了一些更改,将最低Gradle版本升级到了6.5,现在我遇到了这个错误:
找不到id为'findbugs'的插件。
据我所读,对于Gradle 5.0+,FindBugs已经被弃用。
现在,我应该如何在这个克隆中移除对这三个插件的使用?或者我应该如何替换它们(我认为SpotBugs是它的新版本!)
又或者如何解决这个错误?
英文:
I'm using a clone of an app which uses FindBugs, PMD, CheckStyle plugins.
But now, i've made some changes which makes minimum Gradle version to 6.5 and now i'm getting this error:
> Plugin with id 'findbugs' not found.
As i read, the findbugs is deprecated for gradle 5.0+ .
Now, how can i remove the usage of these 3 plugins in this clone? Or how can i replace it(i think SpotBugs is the new version of it!)
Or how to solve this error?
答案1
得分: 1
移除项目中的Findbugs,并添加Spotbugs。
您无需移除PMD和CheckStyle。它们正运行良好。
唯一的变更是替换Findbugs为Spotbugs。
英文:
Remove Findbugs and Add Spotbugs in your project.
You don't need to remove PMD and CheckStyle. They are working perfectly.
Only change is of Findbugs.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论