移除或替换 Android 中的 findbugs、PMD 和 checkStyle 插件。

huangapple go评论70阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2020年9月27日 14:09:27
  • 转载请务必保留本文链接:https://go.coder-hub.com/64085378.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定