0
我試過這樣做,但沒有奏效。如何使用sbt 0.13.8中的unmanagedJars路徑中的變量?
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代碼嗎?
你得到的錯誤是什麼? –