summaryrefslogtreecommitdiff
path: root/example/websockets/build.sc
blob: e36e1b7767180bc78219d01f50fc61d621185263 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import mill._, scalalib._


trait AppModule extends ScalaModule{
  def scalaVersion = "2.13.0"

  object test extends Tests{
    def testFrameworks = Seq("utest.runner.Framework")

    def ivyDeps = Agg(
      ivy"com.lihaoyi::utest::0.6.9",
      ivy"com.lihaoyi::requests::0.2.0",
      ivy"org.asynchttpclient:async-http-client:2.5.2"
    )
  }
}