6

我对 Gradle 和 Dotty 都很陌生(对 Scala 整体来说还是比较新的)。我能够像这样使用 Gradle 创建一个 Scala 项目:

gradle init --dsl kotlin --type scala-library --package com.stackoverflow.example

而且我知道 Dotty 可以与 SBT 一起使用。但是有没有办法将 Dotty 与 Gradle 连接起来(还)?

4

1 回答 1

3

有 dotty 示例存储库,其中演示了如何使用包括 gradle 在内的各种构建工具来构建 dotty。

https://github.com/michelou/dotty-examples/blob/master/examples/dotty-example-project/build.gradle

正如您所看到的,目前还没有标准,但是当有标准时,我相信维护人员会更新这个 repo。

在我的个人项目中,我做了一些类似的简化:

https://github.com/SimY4/xpath-to-xml/blob/master/xpath-to-xml-scala/build-3.gradle

于 2020-07-11T13:12:38.410 回答