mirror of https://github.com/apache/kafka.git
MINOR: Upgrade spotbugs and spotbugsPlugin (#8790)
Upgrade spotbugsPlugin to have clear output indicating where the error is. When investigating KAFKA-10081, I found the error output of spotbugs is very poor. It doesn't even tell you where the error is and how many errors found, it will take a lot of time for the developers to find out where the error is, and then fix it.  https://builds.apache.org/blue/organizations/jenkins/kafka-trunk-jdk8/detail/kafka-trunk-jdk8/4596/pipeline/ Then, I found out there's a bug in spotbugsPlugin in V4.0.x, and got fixed in V4.2.x https://github.com/spotbugs/spotbugs-gradle-plugin/issues/210 So, after upgrading to V4.2.x (I followed to the latest version V4.2.4), the output is like this:  So you know there's 1 error and you can also open the report file to find out the error. Upgraded to the latest bug fix release of spotbugs (4.0.3) while at it. Reviewers: Ismael Juma <ismael@juma.me.uk>
This commit is contained in:
parent
98cd4b8cab
commit
162884409d
|
@ -111,8 +111,8 @@ versions += [
|
|||
shadowPlugin: "5.2.0",
|
||||
slf4j: "1.7.30",
|
||||
snappy: "1.1.7.3",
|
||||
spotbugs: "4.0.2",
|
||||
spotbugsPlugin: "4.0.5",
|
||||
spotbugs: "4.0.3",
|
||||
spotbugsPlugin: "4.2.4",
|
||||
spotlessPlugin: "3.28.1",
|
||||
testRetryPlugin: "1.1.5",
|
||||
zinc: "1.3.5",
|
||||
|
|
Loading…
Reference in New Issue