aboutsummaryrefslogtreecommitdiff
path: root/stage2/Plugin.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-02-22 17:09:03 +0800
committerChristopher Vogt <oss.nsp@cvogt.org>2017-02-22 17:09:03 +0800
commitd88112b8f56c6f7556aa1e62d7cd10e7a02bd620 (patch)
treefcc5e2d9e9abe9c4ce682724cfdcb4f1349b54cc /stage2/Plugin.scala
parent420b0bc9fdb542d0af49da96e37733ab3a3363ee (diff)
downloadcbt-d88112b8f56c6f7556aa1e62d7cd10e7a02bd620.tar.gz
cbt-d88112b8f56c6f7556aa1e62d7cd10e7a02bd620.tar.bz2
cbt-d88112b8f56c6f7556aa1e62d7cd10e7a02bd620.zip
allow plugins to access essential plugins
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" )
}