summaryrefslogtreecommitdiff
path: root/example/websockets4/build.sc
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2019-10-09 10:44:14 +0800
committerLi Haoyi <haoyi.sg@gmail.com>2019-10-09 10:47:20 +0800
commit0f0f945abd365c9f6f83b3d315cea30eacb6ed51 (patch)
tree4b812b4f6650a42056aa31c2f712b3d7e4125925 /example/websockets4/build.sc
parente21d5ab3526937619c59dd01114b48521eee9d26 (diff)
downloadcask-0f0f945abd365c9f6f83b3d315cea30eacb6ed51.tar.gz
cask-0f0f945abd365c9f6f83b3d315cea30eacb6ed51.tar.bz2
cask-0f0f945abd365c9f6f83b3d315cea30eacb6ed51.zip
Add test to verify `compress` decorator is properly passing through irrelevant results
Diffstat (limited to 'example/websockets4/build.sc')
-rw-r--r--example/websockets4/build.sc17
1 files changed, 17 insertions, 0 deletions
diff --git a/example/websockets4/build.sc b/example/websockets4/build.sc
new file mode 100644
index 0000000..197e285
--- /dev/null
+++ b/example/websockets4/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