summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
Diffstat (limited to 'build.sc')
-rw-r--r--build.sc10
1 files changed, 10 insertions, 0 deletions
diff --git a/build.sc b/build.sc
new file mode 100644
index 0000000..2a3ca2c
--- /dev/null
+++ b/build.sc
@@ -0,0 +1,10 @@
+import mill._, scalalib._
+
+object cask extends ScalaModule{
+ def scalaVersion = "2.12.6"
+ def ivyDeps = Agg(ivy"org.scala-lang:scala-reflect:$scalaVersion")
+ object test extends Tests{
+ def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.6.3")
+ def testFrameworks = Seq("utest.runner.Framework")
+ }
+}