-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sc
More file actions
29 lines (24 loc) · 691 Bytes
/
Copy pathbuild.sc
File metadata and controls
29 lines (24 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import mill._, scalalib._
object app extends ScalaModule {
def scalaVersion = "2.13.4"
def scalacOptions = Seq(
"-deprecation",
"-feature"
)
def ivyDeps = Agg(
ivy"com.lihaoyi::cask:0.7.8",
ivy"org.jsoup:jsoup:1.14.1",
ivy"us.codecraft:xsoup:0.3.2",
ivy"com.lihaoyi::upickle:1.4.0",
ivy"com.typesafe:config:1.4.1",
ivy"org.scala-lang.modules::scala-xml:2.0.1",
)
object test extends Tests{
def ivyDeps = Agg(
//ivy"org.scalactic::scalactic:3.1.1",
ivy"org.scalatest::scalatest:3.2.8",
ivy"com.lihaoyi::requests::0.6.5",
)
def testFrameworks = Seq("org.scalatest.tools.Framework")
}
}