aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorNoel Welsh <noel@Noels-MacBook-Pro.local>2016-05-24 14:59:33 +0100
committerNoel Welsh <noel@Noels-MacBook-Pro.local>2016-05-24 14:59:33 +0100
commit86e05110cc652c7c729672f58655a8e8585b072d (patch)
treead68ace5a94f3719389966504bd228fd2871791c /build.sbt
parentcd2fdddcf2bc76c91112ad8238463ba597d98814 (diff)
downloadcreative-scala-template-86e05110cc652c7c729672f58655a8e8585b072d.tar.gz
creative-scala-template-86e05110cc652c7c729672f58655a8e8585b072d.tar.bz2
creative-scala-template-86e05110cc652c7c729672f58655a8e8585b072d.zip
Initial import of template
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt21
1 files changed, 21 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
new file mode 100644
index 0000000..29c1070
--- /dev/null
+++ b/build.sbt
@@ -0,0 +1,21 @@
+scalaVersion := "2.11.8"
+
+resolvers += Resolver.bintrayRepo("underscoreio", "training")
+
+initialCommands in console := """
+ |import doodle.core._
+ |import doodle.core.Image._
+ |import doodle.syntax._
+ |import doodle.jvm.Java2DCanvas._
+ |import doodle.backend.StandardInterpreter._
+ |import doodle.examples._
+ """.trim.stripMargin
+
+cleanupCommands in console := """
+ |doodle.jvm.quit()
+ """.trim.stripMargin
+
+libraryDependencies ++= Seq(
+ "underscoreio" %% "doodle" % "0.6.1",
+ "org.typelevel" %% "cats" % "0.4.1"
+)