mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
a2d785e3ee
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
29 lines
598 B
YAML
29 lines
598 B
YAML
# Copyright (c) 2020 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
sdk-version: 0.0.0
|
|
name: quickstart
|
|
source: daml
|
|
init-script: Setup:initialize
|
|
parties:
|
|
- Alice
|
|
- Bob
|
|
- USD_Bank
|
|
- EUR_Bank
|
|
version: 0.0.1
|
|
exposed-modules:
|
|
- Main
|
|
dependencies:
|
|
- daml-prim
|
|
- daml-stdlib
|
|
- daml-script
|
|
# <doc-ref:codegen-scala>
|
|
codegen:
|
|
scala:
|
|
package-prefix: com.daml.quickstart.iou.model
|
|
output-directory: scala-codegen/src/main/scala
|
|
verbosity: 2
|
|
# </doc-ref:codegen-scala>
|
|
sandbox-options:
|
|
- --wall-clock-time
|