daml/runtime-components/non-repudiation-testing/BUILD.bazel
Stefano Baghino f1cd4b1c7c
Remove dependencies on compatibility libraries (#12548)
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
2022-01-24 18:04:07 +00:00

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",
],
)