diff options
Diffstat (limited to 'org.eclipse.jgit.http.apache/BUCK')
-rw-r--r-- | org.eclipse.jgit.http.apache/BUCK | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/org.eclipse.jgit.http.apache/BUCK b/org.eclipse.jgit.http.apache/BUCK new file mode 100644 index 0000000000..f48f33a1ae --- /dev/null +++ b/org.eclipse.jgit.http.apache/BUCK @@ -0,0 +1,12 @@ +java_library( + name = 'http-apache', + srcs = glob(['src/**']), + resources = glob(['resources/**']), + deps = [ + '//org.eclipse.jgit:jgit', + '//lib:commons-logging', + '//lib:httpcomponents', + '//lib:httpcore', + ], + visibility = ['PUBLIC'], +) |