summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.junit.http
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2016-01-01 23:54:15 +0100
committerMatthias Sohn <matthias.sohn@sap.com>2016-01-02 02:02:46 +0100
commitf1b79c3c89ca2ddf080c1af35039ca7e604e5b61 (patch)
treeddddf664bac00dcf9e67eb6c13ff9eb608c01dd9 /org.eclipse.jgit.junit.http
parent09500165a8592386c92c1f10a36bfd4fc4666a11 (diff)
downloadjgit-f1b79c3c89ca2ddf080c1af35039ca7e604e5b61.tar.gz
jgit-f1b79c3c89ca2ddf080c1af35039ca7e604e5b61.zip
buck: run http tests
Running tests using buck reveals that HttpClientTests are broken and weren't executed by Maven since these test classes don't match the maven-surefire-plugin's default for test classes **/*Test.java. Will be fixed in a follow-up change. Change-Id: I82a01b5fd3f0a930bec2423a29a256601dadc248 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.junit.http')
-rw-r--r--org.eclipse.jgit.junit.http/BUCK18
1 files changed, 18 insertions, 0 deletions
diff --git a/org.eclipse.jgit.junit.http/BUCK b/org.eclipse.jgit.junit.http/BUCK
new file mode 100644
index 0000000000..68976a68ae
--- /dev/null
+++ b/org.eclipse.jgit.junit.http/BUCK
@@ -0,0 +1,18 @@
+java_library(
+ name = 'junit-http',
+ srcs = glob(['src/**']),
+ resources = glob(['resources/**']),
+ provided_deps = [
+ '//org.eclipse.jgit:jgit',
+ '//org.eclipse.jgit.http.server:jgit-servlet',
+ '//org.eclipse.jgit.junit:junit',
+ '//lib:junit',
+ '//lib:servlet-api',
+ '//lib/jetty:http',
+ '//lib/jetty:server',
+ '//lib/jetty:servlet',
+ '//lib/jetty:security',
+ '//lib/jetty:util',
+ ],
+ visibility = ['PUBLIC'],
+)