summaryrefslogtreecommitdiffstats
path: root/WORKSPACE
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2018-11-28 20:16:23 +0100
committerMatthias Sohn <matthias.sohn@sap.com>2018-11-28 20:18:04 +0100
commit2532fa74c21166971ba05437e14786d93615bc82 (patch)
treec4d82d6829d050b2336f4ef2552aed9b0d25e975 /WORKSPACE
parent4b3c87f6392a7c514ee8552b722070472d9590e9 (diff)
downloadjgit-2532fa74c21166971ba05437e14786d93615bc82.tar.gz
jgit-2532fa74c21166971ba05437e14786d93615bc82.zip
Fix running tests from bazel
The new dependency to mockito for JDKHttpConnectionTest wasn't added for bazel test run. Change-Id: Ie967b7152340a0b3e05cced7eadfd40af78d9995 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE26
1 files changed, 26 insertions, 0 deletions
diff --git a/WORKSPACE b/WORKSPACE
index d94c7ede70..008eeb9a9b 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -131,6 +131,32 @@ maven_jar(
)
maven_jar(
+ name = "mockito",
+ artifact = "org.mockito:mockito-core:2.13.0",
+ sha1 = "8e372943974e4a121fb8617baced8ebfe46d54f0",
+)
+
+BYTE_BUDDY_VERSION = "1.7.9"
+
+maven_jar(
+ name = "byte_buddy",
+ artifact = "net.bytebuddy:byte-buddy:" + BYTE_BUDDY_VERSION,
+ sha1 = "51218a01a882c04d0aba8c028179cce488bbcb58",
+)
+
+maven_jar(
+ name = "byte_buddy_agent",
+ artifact = "net.bytebuddy:byte-buddy-agent:" + BYTE_BUDDY_VERSION,
+ sha1 = "a6c65f9da7f467ee1f02ff2841ffd3155aee2fc9",
+)
+
+maven_jar(
+ name = "objenesis",
+ artifact = "org.objenesis:objenesis:2.6",
+ sha1 = "639033469776fd37c08358c6b92a4761feb2af4b",
+)
+
+maven_jar(
name = "gson",
artifact = "com.google.code.gson:gson:2.8.2",
sha1 = "3edcfe49d2c6053a70a2a47e4e1c2f94998a49cf",