1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
load(
"@com_googlesource_gerrit_bazlets//tools:junit.bzl",
"junit_tests",
)
load("@rules_java//java:defs.bzl", "java_library")
junit_tests(
name = "http",
srcs = glob(["tst/**/*.java"]),
tags = ["http"],
deps = [
":helpers",
"//lib:commons-logging",
"//lib:httpcore",
"//lib:jetty-http",
"//lib:jetty-io",
"//lib:jetty-security",
"//lib:jetty-server",
"//lib:jetty-servlet",
"//lib:jetty-util",
"//lib:junit",
"//lib:servlet-api",
"//lib:slf4j-api",
"//lib:slf4j-simple",
"//org.eclipse.jgit.http.apache:http-apache",
"//org.eclipse.jgit.http.server:jgit-servlet",
"//org.eclipse.jgit:jgit",
"//org.eclipse.jgit.junit.http:junit-http",
"//org.eclipse.jgit.junit:junit",
],
)
java_library(
name = "helpers",
testonly = 1,
srcs = glob(["src/**/*.java"]),
deps = [
"//lib:junit",
"//lib:servlet-api",
"//org.eclipse.jgit:jgit",
"//org.eclipse.jgit.junit:junit",
],
)
|