Sbt插件,默认文件SettingKey

时间:2013-12-17 03:20:16

标签: sbt

我有一个我在project / build.scala

中定义的settingKey
val databasePropertiesFile = settingKey[File]("The file we use to grab the database login configuration.")

我想根据sourceDirctory为它指定一个默认值,就像这样,但它不能编译:

  databasePropertiesFile := {
    sourceDirectory / "db/devel.properties"
  }

设置默认文件必须执行的魔法是什么?

1 个答案:

答案 0 :(得分:2)

魔术是“.value”:

databasePropertiesFile := {
  sourceDirectory.value / "db" / "devel.properties"
}