daml/ledger/participant-state-kv-errors/BUILD.bazel
Hubert Slojewski 16a97e8715
Move KVErrors to participant-state-kv-errors [KVL-1371] (#13604)
CHANGELOG_BEGIN
CHANGELOG_END
2022-04-19 15:22:31 +02:00

22 lines
584 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 = "participant-state-kv-errors",
srcs = glob(["src/main/scala/**/*.scala"]),
tags = ["maven_coordinates=com.daml:participant-state-kv-errors:__VERSION__"],
visibility = [
"//visibility:public",
],
runtime_deps = [],
deps = [
"//ledger-api/grpc-definitions:ledger_api_proto_scala",
"//ledger/error",
],
)