diff --git a/README.md b/README.md index 93126a6c..90199107 100644 --- a/README.md +++ b/README.md @@ -167,7 +167,7 @@ Use spotbugs to lint the `srcs`. | Name | Description | Type | Mandatory | Default | | :------------- | :------------- | :------------- | :------------- | :------------- | | name | A unique name for this target. | Name | required | | -| config | - | Label | optional | //java:spotbugs-default-config | +| config | - | Label | optional | @contrib_rules_jvm//java:spotbugs-default-config | | deps | - | List of labels | required | | | only_output_jars | If set to true, only the output jar of the target will be analyzed. Otherwise all transitive runtime dependencies will be analyzed | Boolean | optional | True | 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, ],