mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
|
# Copyright (c) 2021 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
load(
|
||
|
"//bazel_tools:scala.bzl",
|
||
|
"da_scala_library",
|
||
|
)
|
||
|
|
||
|
da_scala_library(
|
||
|
name = "non-repudiation-testing",
|
||
|
srcs = glob(["src/main/scala/**/*.scala"]),
|
||
|
scala_deps = [
|
||
|
"@maven//:org_tpolecat_doobie_core",
|
||
|
"@maven//:org_tpolecat_doobie_hikari",
|
||
|
"@maven//:org_typelevel_cats_core",
|
||
|
"@maven//:org_typelevel_cats_effect",
|
||
|
"@maven//:org_scala_lang_modules_scala_collection_compat",
|
||
|
],
|
||
|
visibility = [
|
||
|
"//:__subpackages__",
|
||
|
],
|
||
|
deps = [
|
||
|
"//ledger-api/grpc-definitions:ledger_api_proto_scala",
|
||
|
"//ledger/ledger-api-common",
|
||
|
"//ledger/ledger-resources",
|
||
|
"//libs-scala/doobie-slf4j",
|
||
|
"//libs-scala/resources",
|
||
|
"//libs-scala/resources-akka",
|
||
|
"//libs-scala/resources-grpc",
|
||
|
"//runtime-components/non-repudiation",
|
||
|
"//runtime-components/non-repudiation-postgresql",
|
||
|
"//runtime-components/non-repudiation-resources",
|
||
|
"@maven//:com_zaxxer_HikariCP",
|
||
|
"@maven//:org_slf4j_slf4j_api",
|
||
|
],
|
||
|
)
|