aboutsummaryrefslogtreecommitdiff
path: root/build/build
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-03-11 13:27:24 -0500
committerChristopher Vogt <oss.nsp@cvogt.org>2017-03-11 13:27:24 -0500
commitf890b14098a588fb4e016afc6932edf89f8ef1f7 (patch)
tree6ea3269fdfadab3ac4317ed67dfb3c2e07ac3c87 /build/build
parente760ee9e4c4c3b3f39e2bb2dfd47d2b142e12a53 (diff)
downloadcbt-f890b14098a588fb4e016afc6932edf89f8ef1f7.tar.gz
cbt-f890b14098a588fb4e016afc6932edf89f8ef1f7.tar.bz2
cbt-f890b14098a588fb4e016afc6932edf89f8ef1f7.zip
extract re-usable parts of cbt’s own build into Shared plugin
Diffstat (limited to 'build/build')
-rw-r--r--build/build/build.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/build/build/build.scala b/build/build/build.scala
new file mode 100644
index 0000000..313b2b5
--- /dev/null
+++ b/build/build/build.scala
@@ -0,0 +1,7 @@
+package cbt_build.cbt.build
+import cbt._
+class Build(val context: Context) extends CbtInternal{
+ override def dependencies = (
+ super.dependencies :+ cbtInternal.shared
+ )
+}