aboutsummaryrefslogtreecommitdiff
path: root/stage2/Plugin.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-06-07 11:07:09 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2016-06-15 01:24:46 -0400
commitad2094b06eb7e313b3655ae0cae98b50787177d3 (patch)
tree1ea8a3a23991554d248a67c2f89f352609580720 /stage2/Plugin.scala
parentb37e339c41483c15bf14f84be60c8470fd429d77 (diff)
downloadcbt-ad2094b06eb7e313b3655ae0cae98b50787177d3.tar.gz
cbt-ad2094b06eb7e313b3655ae0cae98b50787177d3.tar.bz2
cbt-ad2094b06eb7e313b3655ae0cae98b50787177d3.zip
separate sbt layout and scalatest plugins and create a more general plugin architecture
Diffstat (limited to 'stage2/Plugin.scala')
-rw-r--r--stage2/Plugin.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/stage2/Plugin.scala b/stage2/Plugin.scala
new file mode 100644
index 0000000..94a8749
--- /dev/null
+++ b/stage2/Plugin.scala
@@ -0,0 +1,4 @@
+package cbt
+trait Plugin extends BaseBuild{
+ override def dependencies = super.dependencies :+ context.cbtDependency
+}