forked from bufbuild/protoc-gen-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
75 lines (66 loc) · 2.37 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
workspace(name = "com_lyft_protoc_gen_validate")
load('@bazel_tools//tools/build_defs/repo:http.bzl', 'http_archive')
http_archive(
name = "io_bazel_rules_go",
url = "https://github.com/bazelbuild/rules_go/releases/download/0.16.0/rules_go-0.16.0.tar.gz",
sha256 = "ee5fe78fe417c685ecb77a0a725dc9f6040ae5beb44a0ba4ddb55453aad23a8a",
)
http_archive(
name = "bazel_gazelle",
url = "https://github.com/bazelbuild/bazel-gazelle/releases/download/0.14.0/bazel-gazelle-0.14.0.tar.gz",
sha256 = "c0a5739d12c6d05b6c1ad56f2200cb0b57c5a70e03ebd2f7b87ce88cabf09c7b",
)
# TODO: use released version of protobuf that includes commit
# fa252ec2a54acb24ddc87d48fed1ecfd458445fd. This works around the issue
# described here: https://github.com/google/protobuf/pull/5024
http_archive(
name = "com_google_protobuf",
url = "https://github.com/google/protobuf/archive/fa252ec2a54acb24ddc87d48fed1ecfd458445fd.tar.gz",
sha256 = "3d610ac90f8fa16e12490088605c248b85fdaf23114ce4b3605cdf81f7823604",
strip_prefix = "protobuf-fa252ec2a54acb24ddc87d48fed1ecfd458445fd",
)
http_archive(
name = "bazel_skylib",
url = "https://github.com/bazelbuild/bazel-skylib/archive/0.5.0.tar.gz",
sha256 = "b5f6abe419da897b7901f90cbab08af958b97a8f3575b0d3dd062ac7ce78541f",
strip_prefix = "bazel-skylib-0.5.0",
)
load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")
go_rules_dependencies()
go_register_toolchains()
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies")
gazelle_dependencies()
bind(
name = "six",
actual = "@six_archive//:six",
)
new_http_archive(
name = "six_archive",
build_file = "@com_google_protobuf//:six.BUILD",
sha256 = "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a",
url = "https://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz#md5=34eed507548117b2ab523ab14b2f8b55",
)
maven_jar(
name="com_google_re2j",
artifact = "com.google.re2j:re2j:1.2",
)
maven_jar(
name = "com_google_guava",
artifact="com.google.guava:guava:27.0-jre",
)
bind(
name = "guava",
actual="@com_google_guava//jar",
)
maven_jar(
name = "com_google_gson",
artifact = "com.google.code.gson:gson:2.8.5"
)
bind(
name = "gson",
actual = "@com_google_gson//jar",
)
maven_jar(
name = "org_apache_commons_validator",
artifact = "commons-validator:commons-validator:1.6"
)