aboutsummaryrefslogtreecommitdiff
path: root/stage2/Plugin.scala
diff options
context:
space:
mode:
Diffstat (limited to 'stage2/Plugin.scala')
-rw-r--r--stage2/Plugin.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/stage2/Plugin.scala b/stage2/Plugin.scala
index 94a8749..4d52fcc 100644
--- a/stage2/Plugin.scala
+++ b/stage2/Plugin.scala
@@ -1,4 +1,5 @@
package cbt
trait Plugin extends BaseBuild{
- override def dependencies = super.dependencies :+ context.cbtDependency
+ override def dependencies =
+ super.dependencies :+ context.cbtDependency :+ DirectoryDependency( context.cbtHome ++ "/plugins/essentials" )
}