summaryrefslogtreecommitdiff
path: root/example/todo/build.sc
diff options
context:
space:
mode:
Diffstat (limited to 'example/todo/build.sc')
-rw-r--r--example/todo/build.sc20
1 files changed, 20 insertions, 0 deletions
diff --git a/example/todo/build.sc b/example/todo/build.sc
new file mode 100644
index 0000000..b570b3b
--- /dev/null
+++ b/example/todo/build.sc
@@ -0,0 +1,20 @@
+import mill._, scalalib._
+
+
+trait AppModule extends ScalaModule{
+ def scalaVersion = "2.12.6"
+ def ivyDeps = Agg(
+ ivy"com.lihaoyi::cask:0.0.1",
+ ivy"org.xerial:sqlite-jdbc:3.18.0",
+ ivy"io.getquill::quill-jdbc:2.5.4"
+ )
+
+ object test extends Tests{
+ def testFrameworks = Seq("utest.runner.Framework")
+ def forkArgs = Seq("--illegal-access=deny")
+ def ivyDeps = Agg(
+ ivy"com.lihaoyi::utest::0.6.3",
+ ivy"com.lihaoyi::requests::0.1.2",
+ )
+ }
+} \ No newline at end of file