summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/BUCK
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jgit/BUCK')
-rw-r--r--org.eclipse.jgit/BUCK20
1 files changed, 20 insertions, 0 deletions
diff --git a/org.eclipse.jgit/BUCK b/org.eclipse.jgit/BUCK
new file mode 100644
index 0000000000..73e2080576
--- /dev/null
+++ b/org.eclipse.jgit/BUCK
@@ -0,0 +1,20 @@
+SRCS = glob(['src/**'])
+RESOURCES = glob(['resources/**'])
+
+java_library(
+ name = 'jgit',
+ srcs = SRCS,
+ resources = RESOURCES,
+ deps = [
+ '//lib:javaewah',
+ '//lib:jsch',
+ '//lib:httpcomponents',
+ '//lib:slf4j-api',
+ ],
+ visibility = ['PUBLIC'],
+)
+
+java_sources(
+ name = 'jgit_src',
+ srcs = SRCS + RESOURCES,
+)