我有一个我在project / build.scala
中定义的settingKeyval databasePropertiesFile = settingKey[File]("The file we use to grab the database login configuration.")
我想根据sourceDirctory为它指定一个默认值,就像这样,但它不能编译:
databasePropertiesFile := {
sourceDirectory / "db/devel.properties"
}
设置默认文件必须执行的魔法是什么?
答案 0 :(得分:2)
魔术是“.value”:
databasePropertiesFile := {
sourceDirectory.value / "db" / "devel.properties"
}