如何在sbt 0.13.8中的unmanagedJars路径中获取变量?

时间:2017-05-25 17:50:09

标签: scala sbt

我尝试过这样做,但它没有用。

val buildType = "test"

unmanagedJars in Compile += file(s"../${buildType}/helper.jar")

If I hardcode the path like this, then it works fine:

unmanagedJars in Compile += file("../test/helper.jar")

我可以在sbt文件中编写scala代码吗?

1 个答案:

答案 0 :(得分:0)

实际上,这很好用,我想我之前没有声明buildType val。