我尝试过这样做,但它没有用。
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代码吗?
答案 0 :(得分:0)
实际上,这很好用,我想我之前没有声明buildType val。