mirror of https://github.com/sbt/sbt.git
add 'initialize' setting
This commit is contained in:
parent
15f490c625
commit
a1c3ffb376
|
|
@ -63,6 +63,7 @@ object Defaults
|
|||
))
|
||||
def globalCore: Seq[Setting[_]] = inScope(GlobalScope)(Seq(
|
||||
pollInterval :== 500,
|
||||
initialize :== (),
|
||||
scalaHome :== None,
|
||||
javaHome :== None,
|
||||
outputStrategy :== None,
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in New Issue