aboutsummaryrefslogtreecommitdiff
path: root/stage2/BuildBuild.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-03-09 01:48:09 -0500
committerChristopher Vogt <oss.nsp@cvogt.org>2016-03-09 01:48:09 -0500
commitb408b441569dc165f4d41b048ff64253695a491d (patch)
tree8ac98cf412825721528cb0c249b3fac74273e223 /stage2/BuildBuild.scala
parenta5a8515c22a7b434a0da34de48caafbef7e5ee8e (diff)
downloadcbt-b408b441569dc165f4d41b048ff64253695a491d.tar.gz
cbt-b408b441569dc165f4d41b048ff64253695a491d.tar.bz2
cbt-b408b441569dc165f4d41b048ff64253695a491d.zip
Add feature for starting the Scala REPL in arbitrary versions, propagate logger as implicits
Diffstat (limited to 'stage2/BuildBuild.scala')
-rw-r--r--stage2/BuildBuild.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage2/BuildBuild.scala b/stage2/BuildBuild.scala
index 9283cdf..5e0f5d3 100644
--- a/stage2/BuildBuild.scala
+++ b/stage2/BuildBuild.scala
@@ -3,7 +3,7 @@ import java.io.File
import scala.collection.immutable.Seq
class BuildBuild(context: Context) extends Build(context){
- override def dependencies = Seq( CbtDependency(context.logger) ) ++ super.dependencies
+ override def dependencies = Seq( CbtDependency()(context.logger) ) ++ super.dependencies
def managedBuildDirectory: File = lib.realpath( projectDirectory.parent )
val managedBuild = {
val managedContext = context.copy( cwd = managedBuildDirectory )