add 'initialize' setting

This commit is contained in:
Mark Harrah 2011-04-04 18:23:51 -04:00
parent 15f490c625
commit a1c3ffb376
2 changed files with 2 additions and 0 deletions

View File

@ -63,6 +63,7 @@ object Defaults
))
def globalCore: Seq[Setting[_]] = inScope(GlobalScope)(Seq(
pollInterval :== 500,
initialize :== (),
scalaHome :== None,
javaHome :== None,
outputStrategy :== None,

View File

@ -33,6 +33,7 @@ object Keys
val thisProjectRef = SettingKey[ProjectRef]("this-project-ref")
val configuration = SettingKey[Configuration]("configuration")
val commands = SettingKey[Seq[Command]]("commands")
val initialize = SettingKey[Unit]("initialize")
// Command keys
val logged = AttributeKey[Logger]("log")