8000 feat(gazelle): Support bzlmod · bazel-contrib/rules_python@f5db73a · GitHub
[go: up one dir, main page]

Skip to content

Commit f5db73a

Browse files
committed
feat(gazelle): Support bzlmod
Work towards #965
1 parent bf96178 commit f5db73a

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

gazelle/MODULE.bazel

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
module(
2+
name = "rules_python_gazelle_plugin",
3+
compatibility_level = 1,
4+
version = "0.0.0",
5+
)
6+
7+
bazel_dep(name = "rules_python", version = "0.0.0")
8+
bazel_dep(name = "rules_go", repo_name = "io_bazel_rules_go", version = "0.35.0")
9+
bazel_dep(name = "gazelle", repo_name = "bazel_gazelle", version = "0.28.0")
10+
11+
go_deps = use_extension("@bazel_gazelle//:extensions.bzl", "go_deps")
12+
13+
go_deps.from_file(go_mod = "//:go.mod")
14+
15+
use_repo(
16+
go_deps,
17+
"com_github_bazelbuild_bazel_gazelle",
18+
"com_github_bazelbuild_buildtools",
19+
"com_github_bazelbuild_rules_go",
20+
"com_github_bmatcuk_doublestar",
21+
"com_github_emirpasic_gods",
22+
"com_github_ghodss_yaml",
23+
"com_github_google_uuid",
24+
"in_gopkg_yaml_v2",
25+
)

0 commit comments

Comments
 (0)
0