Browse Source

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>
tags/v4.7.0.201704051617-r
David Ostrovsky 7 years ago
parent
commit
fa2851ce78
2 changed files with 7 additions and 22 deletions
  1. 4
    16
      lib/BUILD
  2. 3
    6
      org.eclipse.jgit.test/tests.bzl

+ 4
- 16
lib/BUILD View File

exports = ["@gson//jar"], exports = ["@gson//jar"],
) )


java_library(
name = "hamcrest-core",
testonly = 1,
exports = ["@hamcrest_core//jar"],
)

java_library(
name = "hamcrest-library",
testonly = 1,
exports = ["@hamcrest_library//jar"],
)

java_library( java_library(
name = "httpclient", name = "httpclient",
visibility = [ visibility = [
name = "junit", name = "junit",
testonly = 1, testonly = 1,
visibility = ["//visibility:public"], visibility = ["//visibility:public"],
exports = ["@junit//jar"],
runtime_deps = [
":hamcrest-core",
":hamcrest-library",
exports = [
"@junit//jar",
"@hamcrest_core//jar",
"@hamcrest_library//jar",
], ],
) )



+ 3
- 6
org.eclipse.jgit.test/tests.bzl View File

deps = additional_deps + [ deps = additional_deps + [
':helpers', ':helpers',
':tst_rsrc', ':tst_rsrc',
'//lib:javaewah',
'//lib:junit',
'//lib:slf4j-api',
'//org.eclipse.jgit:jgit', '//org.eclipse.jgit:jgit',
'//org.eclipse.jgit.junit:junit', '//org.eclipse.jgit.junit:junit',
'//org.eclipse.jgit.lfs:jgit-lfs', '//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"], jvm_flags = ["-Xmx256m", "-Dfile.encoding=UTF-8"],
) )

Loading…
Cancel
Save