-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathBUILD.bazel
More file actions
20 lines (20 loc) · 825 Bytes
/
BUILD.bazel
File metadata and controls
20 lines (20 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
java_library(
name = "oauth2_http",
srcs = glob(["java/**/*.java"]),
deps = [
"@com_google_guava_guava//jar",
"@com_google_guava_failureaccess//jar",
"//google-auth-library-java/credentials:credentials",
"@com_google_http_client_google_http_client//jar",
"@com_google_http_client_google_http_client_gson//jar",
"@com_google_api_api_common//jar",
"@com_google_code_gson_gson//jar",
"@com_google_errorprone_error_prone_annotations//jar",
"@com_google_code_findbugs_jsr305//jar",
"@com_google_auto_value_auto_value_annotations//jar",
"@com_google_auto_value_auto_value//jar",
"@org_slf4j_slf4j_api//jar",
],
plugins = ["@com_google_api_gax_java//:auto_value_plugin"],
visibility = ["//visibility:public"],
)