-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathMODULE.bazel
More file actions
28 lines (24 loc) · 893 Bytes
/
MODULE.bazel
File metadata and controls
28 lines (24 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
module(
name = "sdformat",
compatibility_level = 0,
)
bazel_dep(name = "buildifier_prebuilt", version = "8.2.1")
bazel_dep(name = "googletest", version = "1.14.0.bcr.1")
bazel_dep(name = "rules_cc", version = "0.1.1")
bazel_dep(name = "rules_python", version = "0.40.0")
bazel_dep(name = "rules_license", version = "1.0.0")
bazel_dep(name = "tinyxml2", version = "10.0.0")
# Gazebo Dependencies
bazel_dep(name = "rules_gazebo", version = "0.0.6")
bazel_dep(name = "gz-utils", version = "4.0.0")
bazel_dep(name = "gz-math", version = "9.0.0")
archive_override(
module_name = "gz-utils",
strip_prefix = "gz-utils-main",
urls = ["https://github.com/gazebosim/gz-utils/archive/refs/heads/main.tar.gz"],
)
archive_override(
module_name = "gz-math",
strip_prefix = "gz-math-main",
urls = ["https://github.com/gazebosim/gz-math/archive/refs/heads/main.tar.gz"],
)