Skip to content

Commit bc4e7a6

Browse files
r4ntjart
authored andcommitted
Fix the build for bazel 0.16 (#1334)
Bazel 0.16 comes with java 1.9, which doesn't have javax/annotation/Generated, which dagger 2.9 needed. rules_closure 0.8.0 updates its dagger deps to 2.14.1, which resolves the issue.
1 parent 4ee5780 commit bc4e7a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: WORKSPACE

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ workspace(name = "org_tensorflow_tensorboard")
22

33
http_archive(
44
name = "io_bazel_rules_closure",
5-
sha256 = "a80acb69c63d5f6437b099c111480a4493bad4592015af2127a2f49fb7512d8d",
6-
strip_prefix = "rules_closure-0.7.0",
5+
sha256 = "b29a8bc2cb10513c864cb1084d6f38613ef14a143797cea0af0f91cd385f5e8c",
6+
strip_prefix = "rules_closure-0.8.0",
77
urls = [
8-
"https://mirror.bazel.build/github.com/bazelbuild/rules_closure/archive/0.7.0.tar.gz",
9-
"https://github.com/bazelbuild/rules_closure/archive/0.7.0.tar.gz", # 2018-05-09
8+
"https://mirror.bazel.build/github.com/bazelbuild/rules_closure/archive/0.8.0.tar.gz",
9+
"https://github.com/bazelbuild/rules_closure/archive/0.8.0.tar.gz", # 2018-08-03
1010
],
1111
)
1212

0 commit comments

Comments
 (0)