mirror of
https://github.com/google/nomulus
synced 2026-02-09 14:30:33 +00:00
In order to set the customerId field on a payment, the customer entry must exist in Braintree's database. This CL causes it to be created or updated before processing the payment. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=118530040
19 lines
589 B
Python
19 lines
589 B
Python
package(default_visibility = ["//java/com/google/domain/registry:registry_project"])
|
|
|
|
|
|
java_library(
|
|
name = "braintree",
|
|
srcs = glob(["*.java"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//java/com/google/common/base",
|
|
"//java/com/google/domain/registry/config",
|
|
"//java/com/google/domain/registry/keyring/api",
|
|
"//java/com/google/domain/registry/model",
|
|
"//third_party/java/braintree",
|
|
"//third_party/java/dagger",
|
|
"//third_party/java/jsr305_annotations",
|
|
"//third_party/java/jsr330_inject",
|
|
],
|
|
)
|