我正在尝试将各种设置与我的 Play 中的构建定义分开!2.1 应用。
我在 build.sbt 中定义了一些设置如下:
name := "My Project"
version := 1.0
如何在 Build.scala 中重用这些值?
object ApplicationBuild extends Build {
val main =
// Doesn't compile since name and version are SettingKeys, not Strings
play.Project(name, version).settings(
// ...
)
}
非常感谢!