mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
f1cd4b1c7c
Continues the work started in https://github.com/digital-asset/daml/pull/12543 These libraries were only needed to transition from Scala 2.12 to 2.13 and are no longer useful as all the necessary items are now available in Scala 2.13. changelog_begin changelog_end
25 lines
705 B
Python
25 lines
705 B
Python
# Copyright (c) 2022 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"]),
|
|
visibility = [
|
|
"//:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//ledger-api/grpc-definitions:ledger_api_proto_scala",
|
|
"//libs-scala/ports",
|
|
"//libs-scala/ports:ports-testing",
|
|
"//runtime-components/non-repudiation",
|
|
"//runtime-components/non-repudiation-client",
|
|
"@maven//:io_grpc_grpc_netty",
|
|
"@maven//:io_grpc_grpc_services",
|
|
],
|
|
)
|