mirror of https://github.com/sbt/sbt.git
Port tests/it
This commit is contained in:
parent
248766afac
commit
ef511d7582
|
|
@ -0,0 +1,8 @@
|
|||
lazy val root = (project in file(".")).
|
||||
configs(IntegrationTest).
|
||||
settings(
|
||||
Defaults.itSettings,
|
||||
libraryDependencies += specs
|
||||
)
|
||||
|
||||
lazy val specs = "org.specs2" % "specs2_2.10" % "1.12.3" % IntegrationTest
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
import sbt._
|
||||
import Keys._
|
||||
import Import._
|
||||
|
||||
object B extends Build
|
||||
{
|
||||
lazy val IntegrationTest = config("it") extend(Test)
|
||||
lazy val root =
|
||||
Project("root", file("."))
|
||||
.configs( IntegrationTest )
|
||||
.settings( Defaults.itSettings : _*)
|
||||
.settings( libraryDependencies += specs )
|
||||
|
||||
lazy val specs = "org.specs2" % "specs2_2.10" % "1.12.3" % "test"
|
||||
}
|
||||
Loading…
Reference in New Issue