buck: Make :jgit_src target work in cross-cell environment

This artifact is used from unzip utility in Gerrit Code Review
build toolchain and thus the file must exist on the file system.
Moreover, trying to use java_binary() didn't work either, as the
zip layout was wrong: all files contained 'org.eclipse.jgit/src/'
prefix.

Change-Id: I00e3269a7a1a6c6d1fe7e60d1bf1c69b8e57d79d
Signed-off-by: David Ostrovsky <david@ostrovsky.org>
diff --git a/BUCK b/BUCK
index fca0e8a..f19b7bd 100644
--- a/BUCK
+++ b/BUCK
@@ -4,9 +4,10 @@
   visibility = ['PUBLIC'],
 )
 
-java_library(
+genrule(
   name = 'jgit_src',
-  exported_deps = ['//org.eclipse.jgit:jgit_src'],
+  cmd = 'ln -s $(location //org.eclipse.jgit:jgit_src) $OUT',
+  out = 'jgit_src.zip',
   visibility = ['PUBLIC'],
 )