summaryrefslogtreecommitdiff
path: root/example/websockets/build.sc
diff options
context:
space:
mode:
Diffstat (limited to 'example/websockets/build.sc')
-rw-r--r--example/websockets/build.sc19
1 files changed, 19 insertions, 0 deletions
diff --git a/example/websockets/build.sc b/example/websockets/build.sc
new file mode 100644
index 0000000..bc8cf26
--- /dev/null
+++ b/example/websockets/build.sc
@@ -0,0 +1,19 @@
+import mill._, scalalib._
+
+
+trait AppModule extends ScalaModule{
+ def scalaVersion = "2.12.6"
+ def ivyDeps = Agg(
+ ivy"com.lihaoyi::cask:0.0.1",
+ )
+
+ object test extends Tests{
+ def testFrameworks = Seq("utest.runner.Framework")
+
+ def ivyDeps = Agg(
+ ivy"com.lihaoyi::utest::0.6.3",
+ ivy"com.lihaoyi::requests::0.1.2",
+ ivy"com.github.andyglow::websocket-scala-client:0.2.4"
+ )
+ }
+} \ No newline at end of file