I've the following build.sbt
:
name := "it-config-sbt-project"
scalaVersion := "2.10.4"
Defaults.itSettings
lazy val `it-config-sbt-project` = project.in(file(".")).configs(IntegrationTest)
How could I make the line where I add the IntegrationTest configuration even simpler?
I would rather like to have a setting with current configurations and settings of the project, e.g.
settings ++= Defaults.itSettings
configs += IntegrationTest
or even have the itSettings
settings applied automatically with the following line in the sbt file:
configs += IntegrationTest