| changeset 738 | 03f46065ef04 |
| child 873 | c885ed3c39cf |
| 737:826c2bec403b | 738:03f46065ef04 |
|---|---|
1 import mill._ |
|
2 import scalalib._ |
|
3 |
|
4 val baseDir = build.millSourcePath |
|
5 |
|
6 |
|
7 object app extends ScalaModule { |
|
8 def scalaVersion = "2.13.3" |
|
9 |
|
10 def ivyDeps = Agg( |
|
11 ivy"com.lihaoyi::cask:0.6.7", |
|
12 ivy"com.lihaoyi::scalatags:0.9.1" |
|
13 ) |
|
14 |
|
15 override def sources = T.sources(baseDir / "display.scala") |
|
16 //override def resources = T.sources(baseDir / "static") |
|
17 |
|
18 } |