forked from bazeltools/bazel-deps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
20 lines (14 loc) · 661 Bytes
/
WORKSPACE
File metadata and controls
20 lines (14 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
workspace(name = "com_github_johnynek_bazel_deps")
load("@bazel_tools//tools/build_defs/repo:git.bzl",
"git_repository", "new_git_repository")
git_repository(
name = "io_bazel_rules_scala",
remote = "https://github.com/bazelbuild/rules_scala",
commit = "5874a2441596fe9a0bf80e167a4d7edd945c221e" # update this as needed
)
load("@io_bazel_rules_scala//scala:scala.bzl", "scala_repositories")
scala_repositories()
register_toolchains("//:scala_toolchain")
load("//3rdparty:workspace.bzl", "maven_dependencies")
maven_dependencies()
bind(name = 'io_bazel_rules_scala/dependency/scalatest/scalatest', actual = '//3rdparty/jvm/org/scalatest')