mirror of
https://github.com/sbt/sbt.git
synced 2026-09-04 08:45:56 +02:00
Port tests/it
This commit is contained in:
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user