How to define build-scoped settings in multi-project .sbt builds?
问题 As of sbt 0.13, the recommended way to define all configuration is multi-project .sbt build definition. It is absolutely clear how to define settings for each project there; however, how one should define build-wide settings, for example, in ThisBuild or Global scopes? With Scala build definitions it is clear: we have settings key coming from Build trait: object MyBuild extends Build { override lazy val settings = super.settings ++ Seq( someKey := someValue ) } Now someKey 's value will be