Skip to content

Commit c886061

Browse files
bump com.github.spotbugs:spotbugs from 4.8.6 to 4.9.2 (via #2902)
1 parent 05cbb5a commit c886061

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

allure-jira-commons/build.gradle.kts

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ dependencies {
88
annotationProcessor("org.projectlombok:lombok")
99
api("com.squareup.retrofit2:converter-jackson")
1010
api("com.squareup.retrofit2:retrofit")
11-
compileOnly("com.github.spotbugs:spotbugs-annotations")
1211
compileOnly("org.projectlombok:lombok")
1312
compileOnly(project(":allure-plugin-api"))
1413
}

allure-jira-commons/src/main/java/io/qameta/allure/jira/retrofit/DefaultCallAdapterFactory.java

-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*/
1616
package io.qameta.allure.jira.retrofit;
1717

18-
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
1918
import okhttp3.ResponseBody;
2019
import retrofit2.Call;
2120
import retrofit2.CallAdapter;
@@ -88,7 +87,6 @@ public retrofit2.Response<T> adapt(final Call<T> call) {
8887
/**
8988
* Call adapter factory for instances.
9089
*/
91-
@SuppressFBWarnings("NP_NONNULL_RETURN_VIOLATION")
9290
private class InstanceCallAdapter implements CallAdapter<T, Object> {
9391

9492
private static final int NOT_FOUND = 404;

build.gradle.kts

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ subprojects {
8686
dependencies {
8787
dependency("ch.qos.logback:logback-classic:1.3.15")
8888
dependency("com.beust:jcommander:1.82")
89-
dependency("com.github.spotbugs:spotbugs-annotations:4.8.6")
90-
dependency("com.github.spotbugs:spotbugs:4.8.6")
89+
dependency("com.github.spotbugs:spotbugs:4.9.2")
9190
dependency("com.opencsv:opencsv:5.9")
9291
dependency("com.puppycrawl.tools:checkstyle:10.21.4")
9392
dependency("com.squareup.retrofit2:converter-jackson:${comSquareupRetrofit2Version}")

gradle/quality-configs/spotbugs/exclude.xml

+4
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,8 @@
4646
<!-- finalizer methods are pretty much a dead pattern in Java -->
4747
<Bug pattern="CT_CONSTRUCTOR_THROW"/>
4848
</Match>
49+
50+
<Match class="io.qameta.allure.jira.retrofit.DefaultCallAdapterFactory$InstanceCallAdapter">
51+
<Bug pattern="NP_NONNULL_RETURN_VIOLATION"/>
52+
</Match>
4953
</FindBugsFilter>

0 commit comments

Comments
 (0)