Skip to content

Commit

Permalink
Add support for bzlmod modules
Browse files Browse the repository at this point in the history
  • Loading branch information
jwnrt committed Feb 5, 2024
1 parent 1188431 commit 78f3ce9
Show file tree
Hide file tree
Showing 12 changed files with 8,936 additions and 0 deletions.
52 changes: 52 additions & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Copyright 2018 The Bazel Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

module(name = "com_github_google_rules_install")

bazel_dep(name = "rules_go", version = "0.45.1")
bazel_dep(name = "protobuf", version = "3.19.6")
bazel_dep(name = "bazel_skylib", version = "1.3.0")

bazel_dep(
name = "buildifier_prebuilt",
version = "6.4.0",
dev_dependency = True,
)

bazel_dep(
name = "com_github_google_rules_install_examples",
dev_dependency = True,
)
local_path_override(
module_name = "com_github_google_rules_install_examples",
path = "./examples",
)

bazel_dep(
name = "com_github_google_rules_install_docs",
dev_dependency = True,
)
local_path_override(
module_name = "com_github_google_rules_install_docs",
path = "./docs",
)

bazel_dep(
name = "com_github_google_rules_install_test_workspace",
dev_dependency = True,
)
local_path_override(
module_name = "com_github_google_rules_install_test_workspace",
path = "./tests/test_workspace",
)
Loading

0 comments on commit 78f3ce9

Please sign in to comment.