aboutsummaryrefslogtreecommitdiff
path: root/stage2/Plugin.scala
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2017-02-22 17:56:29 +0800
committerGitHub <noreply@github.com>2017-02-22 17:56:29 +0800
commitef5d85fa69c300d67ab548c0957990748c22b458 (patch)
treeefba968c647bb7185fdae711fac26c1306248f02 /stage2/Plugin.scala
parent420b0bc9fdb542d0af49da96e37733ab3a3363ee (diff)
parent0d1b7e92ada02c5149abefdbc8e70d02241951ca (diff)
downloadcbt-ef5d85fa69c300d67ab548c0957990748c22b458.tar.gz
cbt-ef5d85fa69c300d67ab548c0957990748c22b458.tar.bz2
cbt-ef5d85fa69c300d67ab548c0957990748c22b458.zip
Merge pull request #357 from cvogt/scalajs-refactor
scalajs enhancements
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" )
}