summaryrefslogtreecommitdiff
path: root/example/websockets3/build.sc
diff options
context:
space:
mode:
Diffstat (limited to 'example/websockets3/build.sc')
-rw-r--r--example/websockets3/build.sc17
1 files changed, 17 insertions, 0 deletions
diff --git a/example/websockets3/build.sc b/example/websockets3/build.sc
new file mode 100644
index 0000000..197e285
--- /dev/null
+++ b/example/websockets3/build.sc
@@ -0,0 +1,17 @@
+import mill._, scalalib._
+
+
+trait AppModule extends ScalaModule{
+ def scalaVersion = "2.13.0"
+ def ivyDeps = Agg[Dep](
+ )
+ object test extends Tests{
+ def testFrameworks = Seq("utest.runner.Framework")
+
+ def ivyDeps = Agg(
+ ivy"com.lihaoyi::utest::0.7.1",
+ ivy"com.lihaoyi::requests::0.2.0",
+ ivy"org.asynchttpclient:async-http-client:2.5.2"
+ )
+ }
+} \ No newline at end of file