diff options
author | David Ostrovsky <david@ostrovsky.org> | 2017-03-23 06:44:51 +0100 |
---|---|---|
committer | David Ostrovsky <david@ostrovsky.org> | 2017-03-23 06:47:49 +0100 |
commit | fa2851ce78b37601f64f818d92e251634ac1bb39 (patch) | |
tree | 0f62df8cc39ecb035634acda4264f8a24045ccb7 /org.eclipse.jgit.test/tests.bzl | |
parent | 61f830d3a27f7eb9364bd3aff42c7a7d372162a7 (diff) | |
download | jgit-fa2851ce78b37601f64f818d92e251634ac1bb39.tar.gz jgit-fa2851ce78b37601f64f818d92e251634ac1bb39.zip |
bazel: Consume hamcrest through transitive dependency
In I3ab958ce8 explicit dependency in lib/BUILD were defined and most
of the bazel build implementation was switched to using it. Switch
test.bzl test implementation to using explicit dependencies as well.
Change-Id: I4413d1a45addeeb2a980d07669fa034c2eebb3a4
Signed-off-by: David Ostrovsky <david@ostrovsky.org>
Diffstat (limited to 'org.eclipse.jgit.test/tests.bzl')
-rw-r--r-- | org.eclipse.jgit.test/tests.bzl | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/org.eclipse.jgit.test/tests.bzl b/org.eclipse.jgit.test/tests.bzl index d5cc2c9868..9cadc7463a 100644 --- a/org.eclipse.jgit.test/tests.bzl +++ b/org.eclipse.jgit.test/tests.bzl @@ -37,15 +37,12 @@ def tests(tests): deps = additional_deps + [ ':helpers', ':tst_rsrc', + '//lib:javaewah', + '//lib:junit', + '//lib:slf4j-api', '//org.eclipse.jgit:jgit', '//org.eclipse.jgit.junit:junit', '//org.eclipse.jgit.lfs:jgit-lfs', - '@hamcrest_core//jar', - '@hamcrest_library//jar', - '@javaewah//jar', - '@junit//jar', - '@log_api//jar', - '@slf4j_simple//jar', ], jvm_flags = ["-Xmx256m", "-Dfile.encoding=UTF-8"], ) |