aboutsummaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2019-09-21 00:38:30 -0400
committerJakob Odersky <jakob@odersky.com>2019-09-22 14:58:51 -0400
commita5a2118e4e0f31a4b8ae9921fa634058af526cdc (patch)
tree3a8912601637c78c8995fb8403302e2f3971d323 /build.sc
parent8a71d804a41ffbd80f881fae24c42637e246afc2 (diff)
downloadcommando-a5a2118e4e0f31a4b8ae9921fa634058af526cdc.tar.gz
commando-a5a2118e4e0f31a4b8ae9921fa634058af526cdc.tar.bz2
commando-a5a2118e4e0f31a4b8ae9921fa634058af526cdc.zip
Migrate build to mill; redesign command structure and parser
Diffstat (limited to 'build.sc')
-rw-r--r--build.sc13
1 files changed, 13 insertions, 0 deletions
diff --git a/build.sc b/build.sc
new file mode 100644
index 0000000..e27039f
--- /dev/null
+++ b/build.sc
@@ -0,0 +1,13 @@
+import mill._, scalalib._, scalafmt._
+
+object commando extends ScalaModule with ScalafmtModule {
+ override def scalaVersion = "2.13.0"
+
+ object test extends Tests {
+ def ivyDeps = Agg(
+ ivy"com.lihaoyi::utest:0.7.1"
+ )
+ def testFrameworks = Seq("utest.runner.Framework")
+ }
+
+}