daml/libs-scala/safe-proto/BUILD.bazel
Gary Verhaegen 151e12b81a
bump copyright (#16002)
This is the result of:

- Updating `./COPY` to say `2023`.
- Running `./dev-env/bin/dade-copyright-headers update .`
2023-01-04 18:21:15 +01:00

27 lines
714 B
Python

# Copyright (c) 2023 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_test_suite",
)
da_scala_library(
name = "safe-proto",
srcs = glob(["src/main/scala/**/*.scala"]),
tags = ["maven_coordinates=com.daml:safe-proto:__VERSION__"],
visibility = ["//visibility:public"],
deps = ["@maven//:com_google_protobuf_protobuf_java"],
)
da_scala_test_suite(
name = "safe-protot-test",
srcs = glob(["src/test/scala/**/*.scala"]),
max_heap_size = "3g",
deps = [
":safe-proto",
"@maven//:com_google_protobuf_protobuf_java",
],
)