aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2017-04-06 10:56:42 -0400
committerGitHub <noreply@github.com>2017-04-06 10:56:42 -0400
commit16ac805f1a3669b3bcca160e523e3d8cf4c7cc2b (patch)
tree686727fc21107b7ea66f1f7efa883e32994dfbb1 /examples
parent2f6aaac52ac0b6afabf83ed8bd75cf5ea72ee78f (diff)
parent34f3d10608d6f11deb90979066d69d31b7a8fe4f (diff)
downloadcbt-16ac805f1a3669b3bcca160e523e3d8cf4c7cc2b.tar.gz
cbt-16ac805f1a3669b3bcca160e523e3d8cf4c7cc2b.tar.bz2
cbt-16ac805f1a3669b3bcca160e523e3d8cf4c7cc2b.zip
Merge pull request #416 from cvogt/idea-plugin
Add IntelliJ IDEA project generator plugin
Diffstat (limited to 'examples')
-rw-r--r--examples/intellij/README.md1
-rw-r--r--examples/intellij/build/build.scala5
-rw-r--r--examples/intellij/src/Main.scala3
3 files changed, 9 insertions, 0 deletions
diff --git a/examples/intellij/README.md b/examples/intellij/README.md
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/examples/intellij/README.md
@@ -0,0 +1 @@
+
diff --git a/examples/intellij/build/build.scala b/examples/intellij/build/build.scala
new file mode 100644
index 0000000..921cf40
--- /dev/null
+++ b/examples/intellij/build/build.scala
@@ -0,0 +1,5 @@
+import cbt._
+
+class Build(val context: Context) extends BaseBuild with IntelliJ {
+ override def name = "idea-plugin-example"
+}
diff --git a/examples/intellij/src/Main.scala b/examples/intellij/src/Main.scala
new file mode 100644
index 0000000..407a577
--- /dev/null
+++ b/examples/intellij/src/Main.scala
@@ -0,0 +1,3 @@
+object Main extends App {
+ println("This is an example Application for illustrating CBT IntelliJ project generator")
+}