Skip to content

Commit

Permalink
fix: allow other JVM gazelle plugins visibility on go_libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle authored Aug 14, 2023
1 parent def223f commit 0ce5d05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion java/gazelle/private/java/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ go_library(
"package.go",
],
importpath = "github.com/bazel-contrib/rules_jvm/java/gazelle/private/java",
visibility = ["//java/gazelle:__subpackages__"],
# Allow visibility for plugins like Kotlin that don't live in this repo
visibility = ["//visibility:public"],
deps = [
"//java/gazelle/private/sorted_set",
"//java/gazelle/private/types",
Expand Down
3 changes: 2 additions & 1 deletion java/gazelle/private/maven/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ go_library(
"resolver.go",
],
importpath = "github.com/bazel-contrib/rules_jvm/java/gazelle/private/maven",
visibility = ["//java/gazelle:__subpackages__"],
# Allow visibility for plugins like Kotlin that don't live in this repo
visibility = ["//visibility:public"],
deps = [
"//java/gazelle/private/bazel",
"//java/gazelle/private/maven/multiset",
Expand Down

0 comments on commit 0ce5d05

Please sign in to comment.