aboutsummaryrefslogtreecommitdiff
path: root/libraries
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-03-19 21:38:02 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2017-03-19 21:38:02 -0400
commit8f055d10fb3b5494115ffd8bf46b972d0937e234 (patch)
treee0519bd38f618eaa91303076007383a8f3639484 /libraries
parentff4bc8f6d8077dd8d96064267c31bdace93d892b (diff)
downloadcbt-8f055d10fb3b5494115ffd8bf46b972d0937e234.tar.gz
cbt-8f055d10fb3b5494115ffd8bf46b972d0937e234.tar.bz2
cbt-8f055d10fb3b5494115ffd8bf46b972d0937e234.zip
Get rid of the hacky "essential" plugins separation
Let’s keep move them back into stage2 again instead for reduction of complexity, cbt build speed and convenience of fewer manual dependencies. And for that let cbt just include eval from the start.
Diffstat (limited to 'libraries')
-rw-r--r--libraries/eval/build/build/build.scala7
1 files changed, 2 insertions, 5 deletions
diff --git a/libraries/eval/build/build/build.scala b/libraries/eval/build/build/build.scala
index b93554e..af4eb64 100644
--- a/libraries/eval/build/build/build.scala
+++ b/libraries/eval/build/build/build.scala
@@ -1,8 +1,5 @@
import cbt._
-class Build(val context: Context) extends BuildBuildWithoutEssentials{
- // this is used by the essentials plugin, so we can't depend on it
- override def dependencies = super.dependencies ++ Seq(
- plugins.scalaTest
- )
+class Build(val context: Context) extends BuildBuild{
+ override def dependencies = super.dependencies :+ plugins.scalaTest
}