aboutsummaryrefslogblamecommitdiff
path: root/build.sbt
blob: 3b033183d9c4efeae2e948d2ecdf9ec19a114357 (plain) (tree)
1
2
3
4
5
6
7
8
9
                        






                                                             
                                      








                                                  

                                       
 
scalaVersion := "2.12.4"

resolvers += Resolver.bintrayRepo("underscoreio", "training")

initialCommands in console := """
      |import doodle.core._
      |import doodle.core.Image._
      |import doodle.syntax._
      |import doodle.jvm.Java2DFrame._
      |import doodle.backend.StandardInterpreter._
      |import doodle.examples._
    """.trim.stripMargin

cleanupCommands in console := """
      |doodle.jvm.quit()
    """.trim.stripMargin

libraryDependencies ++= Seq(
  "underscoreio" %% "doodle" % "0.8.0",
  "org.typelevel" %% "cats" % "0.9.0"
)