You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
610 B
23 lines
610 B
8 years ago
|
package(default_visibility = ["//visibility:public"])
|
||
|
|
||
|
java_library(
|
||
|
name = "junit-http",
|
||
|
testonly = 1,
|
||
|
srcs = glob(["src/**"]),
|
||
|
resources = glob(["resources/**"]),
|
||
|
# TODO(davido): we want here provided deps
|
||
|
deps = [
|
||
|
"//lib:jetty-http",
|
||
|
"//lib:jetty-security",
|
||
|
"//lib:jetty-server",
|
||
|
"//lib:jetty-servlet",
|
||
|
"//lib:jetty-util",
|
||
|
"//lib:junit",
|
||
|
"//lib:servlet-api",
|
||
|
"//lib:slf4j-api",
|
||
|
"//org.eclipse.jgit.http.server:jgit-servlet",
|
||
|
"//org.eclipse.jgit:jgit",
|
||
|
"//org.eclipse.jgit.junit:junit",
|
||
|
],
|
||
|
)
|