ProjectConfig

io.github.matejcerny.sbtconfig.model.ProjectConfig
See theProjectConfig companion object
case class ProjectConfig(name: Option[String] = ..., organization: Option[String] = ..., version: Option[String] = ..., scalaVersion: Option[String] = ..., scalacOptions: Option[Seq[String]] = ..., dependencies: Option[Seq[Dependency]] = ..., testDependencies: Option[Seq[Dependency]] = ..., homepage: Option[String] = ..., licenses: Option[Seq[String]] = ..., versionScheme: Option[String] = ..., developers: Option[Seq[Developer]] = ...)

Configuration model representing the HOCON config structure. All fields are optional to allow partial configuration.

Value parameters

dependencies

Compile dependencies

developers

List of project developers

homepage

Project homepage URL

licenses

List of license identifiers (e.g., "MIT", "Apache-2.0")

name

Project name

organization

Organization/group ID

scalaVersion

Scala compiler version

scalacOptions

Scala compiler options

testDependencies

Test dependencies

version

Project version

versionScheme

Version scheme (e.g., "early-semver", "semver-spec")

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