daml/navigator/integration-test/BUILD.bazel
Gerolf Seitz a2d785e3ee
Use com.daml as root package (#5343)
Packages com.digitalasset.daml and com.daml have been unified under com.daml

Ledger API and DAML-LF DEV protos have also been moved from `com/digitalasset`
to `com/daml` on the file system.
Protos for already released DAML LF versions (1.6, 1.7, 1.8) stay in the
package `com.digitalasset`.

CHANGELOG_BEGIN
[SDK] All Java and Scala packages starting with
``com.digitalasset.daml`` and ``com.digitalasset`` are now consolidated
under ``com.daml``. Simply changing imports should be enough to
migrate your code.
CHANGELOG_END
2020-04-05 19:49:57 +02:00

39 lines
1.4 KiB
Python

# Copyright (c) 2020 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",
"@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_seleniumhq_selenium_selenium_api",
"@maven//:org_seleniumhq_selenium_selenium_remote_driver",
"@maven//:org_slf4j_slf4j_api",
"@maven//:org_typelevel_cats_core_2_12",
],
)