BuildConfig

io.github.matejcerny.sbtconfig.model.BuildConfig
See theBuildConfig companion object
case class BuildConfig(shared: ProjectConfig, modules: Map[String, ProjectConfig])

Top-level configuration parsed from a single root build.conf.

Value parameters

modules

Per-module overrides keyed by module key (matched against a project's id). Empty for single-project files.

shared

Top-level settings. In single-project mode (modules empty) these apply to every project; in multi-module mode they are the shared base merged into each listed module.

Attributes

Companion
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def productElementNames: Iterator[String]

An iterator over the names of all the elements of this product.

An iterator over the names of all the elements of this product.

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

An iterator over all the elements of this product.

An iterator over all the elements of this product.

Attributes

Returns

in the default implementation, an Iterator[Any]

Inherited from:
Product