forked from higherkindness/droste
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
28 lines (17 loc) · 788 Bytes
/
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
workspace(name = "io_higherkindness_droste")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
rules_scala_version = "1fa4408d48cbf0da72e9229d49d07e10aa8847cd" # update this as needed
http_archive(
name = "io_bazel_rules_scala",
strip_prefix = "rules_scala-%s" % rules_scala_version,
type = "zip",
url = "https://github.com/bazelbuild/rules_scala/archive/%s.zip" % rules_scala_version,
)
load("@io_bazel_rules_scala//scala:scala.bzl", "scala_repositories")
scala_repositories()
load("@io_bazel_rules_scala//scala:toolchains.bzl", "scala_register_toolchains")
scala_register_toolchains()
load("//3rdparty:workspace.bzl", "maven_dependencies")
maven_dependencies()
load(":workspace.bzl", "droste_bind_dependencies")
droste_bind_dependencies()