mirror of https://github.com/sbt/sbt.git
This allows for the same functionality that using SettingsDefinition in
Project#settings allows (specifying either bare Setting[_] or a Seq[Setting[_]])
to be available outside of the settings for a project, for instance when
defining a val.
In short, it allows:
val modelSettings = Def.settings(
sharedSettings,
libraryDependencies += foo
)
|
||
|---|---|---|
| .. | ||
| main/scala/sbt | ||
| test | ||