aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-04-06 01:24:27 +0000
committerChristopher Vogt <oss.nsp@cvogt.org>2017-04-06 01:24:27 +0000
commit34f3d10608d6f11deb90979066d69d31b7a8fe4f (patch)
tree087596ae13c334b22e713a8b2d0788f2543680f6 /build
parent9bfe739adc62ba073342f78a64e24c18e12d4792 (diff)
downloadcbt-34f3d10608d6f11deb90979066d69d31b7a8fe4f.tar.gz
cbt-34f3d10608d6f11deb90979066d69d31b7a8fe4f.tar.bz2
cbt-34f3d10608d6f11deb90979066d69d31b7a8fe4f.zip
change IntelliJ plugin draft to follow now recommend plugin style
Diffstat (limited to 'build')
-rw-r--r--build/build.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/build.scala b/build/build.scala
index 4635159..74bf6da 100644
--- a/build/build.scala
+++ b/build/build.scala
@@ -2,7 +2,7 @@ package cbt_build.cbt
import cbt._
import cbt_internal._
-class Build(val context: Context) extends Shared with Scalariform with PublishLocal{
+class Build(val context: Context) extends Shared with Scalariform with PublishLocal with CommandLineOverrides{
override def name: String = "cbt"
override def version: String = "0.1"
override def description: String = "Fast, intuitive Build Tool for Scala"
@@ -24,6 +24,7 @@ class Build(val context: Context) extends Shared with Scalariform with PublishLo
Seq(
context.cbtHome / "stage2" / "DirectoryDependency.scala",
context.cbtHome / "stage2" / "LazyDependency.scala",
+ context.cbtHome / "stage2" / "plugins" / "IntelliJ.scala",
context.cbtHome / "stage2" / "plugins" / "ScalaTest.scala",
context.cbtHome / "stage2" / "plugins" / "Scalatex.scala",
context.cbtHome / "stage2" / "plugins" / "Tut.scala",