daml/navigator/integration-test/BUILD.bazel
Gary Verhaegen a925f0174c
update copyright notices for 2021 (#8257)
* update copyright notices for 2021

To be merged on 2021-01-01.

CHANGELOG_BEGIN
CHANGELOG_END

* patch-bazel-windows & da-ghc-lib
2021-01-01 19:49:51 +01:00

40 lines
1.5 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_binary")
# Note that this whole library is currently an unused and
# we do not have integration tests for navigator right now.
da_scala_binary(
name = "navigatortest-jar",
srcs = glob(
[
"src/**/*.scala",
],
),
main_class = "com.daml.navigator.test.Main",
resource_strip_prefix = "navigator/integration-test/src/main/resources/",
resources = ["src/main/resources/Main.daml"],
visibility = ["//visibility:public"],
runtime_deps = [
"//ledger/sandbox-classic",
"@maven//:ch_qos_logback_logback_classic",
],
deps = [
"@maven//:com_chuusai_shapeless_2_12",
"@maven//:com_github_scopt_scopt_2_12",
"@maven//:com_typesafe_scala_logging_scala_logging_2_12",
"@maven//:commons_codec_commons_codec",
"@maven//:io_circe_circe_core_2_12",
"@maven//:io_circe_circe_generic_2_12",
"@maven//:io_circe_circe_parser_2_12",
"@maven//:org_scalactic_scalactic_2_12",
"@maven//:org_scalatest_scalatest_2_12",
"@maven//:org_scalatestplus_selenium_3_141_2_12",
"@maven//:org_seleniumhq_selenium_selenium_api",
"@maven//:org_seleniumhq_selenium_selenium_remote_driver",
"@maven//:org_slf4j_slf4j_api",
"@maven//:org_typelevel_cats_core_2_12",
],
)