Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ mockito = "5.18.0"
# Build Analysis
checkstyle = "10.23.1"
pmd = "7.13.0"
spotbugs-tool = "4.8.6"
spotbugs-plugin = "6.0.17"
spotbugs-tool = "4.9.3"
spotbugs-plugin = "6.1.13"
spotless-plugin = "6.25.0"

# Packaging
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
@EnableKubernetesMockClient(crud = true)
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)
@SuppressFBWarnings(
value = {"UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD", "UUF_UNUSED_FIELD"},
value = {"UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD"},
justification = "Unwritten fields are covered by Kubernetes mock client")
class KubernetesMetricsInterceptorTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

@EnableKubernetesMockClient(crud = true)
@SuppressFBWarnings(
value = {"UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD", "UUF_UNUSED_FIELD"},
value = {"UWF_UNWRITTEN_FIELD"},
justification = "Unwritten fields are covered by Kubernetes mock client")
class HealthProbeTest {
private static Operator operator;
Expand Down
Loading