-
Notifications
You must be signed in to change notification settings - Fork 37
/
WORKSPACE
47 lines (36 loc) · 1.24 KB
/
WORKSPACE
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
workspace(name = "rules_antlr")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_jar")
local_repository(
name = "examples",
path = "./examples",
)
http_jar(
name = "junit",
sha256 = "59721f0805e223d84b90677887d9ff567dc534d7c502ca903c0c2b17f05c116a",
url = "https://jcenter.bintray.com/junit/junit/4.12/junit-4.12.jar",
)
http_jar(
name = "jimfs",
sha256 = "c4828e28d7c0a930af9387510b3bada7daa5c04d7c25a75c7b8b081f1c257ddd",
url = "https://jcenter.bintray.com/com/google/jimfs/jimfs/1.1/jimfs-1.1.jar",
)
http_jar(
name = "guava",
sha256 = "4a5aa70cc968a4d137e599ad37553e5cfeed2265e8c193476d7119036c536fe7",
url = "https://jcenter.bintray.com/com/google/guava/guava/27.1-jre/guava-27.1-jre.jar",
)
load("//antlr:repositories.bzl", "rules_antlr_dependencies")
rules_antlr_dependencies(2, 3, 4)
git_repository(
name = "io_bazel_stardoc",
remote = "https://github.com/bazelbuild/stardoc.git",
tag = "0.4.0",
)
load("@io_bazel_stardoc//:setup.bzl", "stardoc_repositories")
stardoc_repositories()
git_repository(
name = "stardoc_templates",
remote = "https://github.com/marcohu/stardoc_templates.git",
tag = "0.1.0",
)