From 2f0f8abd13620af71b79697f3c39863250195e69 Mon Sep 17 00:00:00 2001 From: Chris Gray Date: Mon, 17 Jul 2023 14:43:26 -0700 Subject: [PATCH] Fix the default config in `spotbugs_test` --- java/private/spotbugs.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/private/spotbugs.bzl b/java/private/spotbugs.bzl index 8ec94597..eb7cad40 100644 --- a/java/private/spotbugs.bzl +++ b/java/private/spotbugs.bzl @@ -83,7 +83,7 @@ spotbugs_test = rule( allow_files = False, ), "config": attr.label( - default = "//java:spotbugs-default-config", + default = "@contrib_rules_jvm//java:spotbugs-default-config", providers = [ SpotBugsInfo, ],