| author | Christian Urban <christian.urban@kcl.ac.uk> |
| Mon, 22 Nov 2021 11:24:08 +0000 | |
| changeset 850 | 7fb643cb3d9d |
| parent 738 | 03f46065ef04 |
| child 873 | c885ed3c39cf |
| permissions | -rw-r--r-- |
import mill._ import scalalib._ val baseDir = build.millSourcePath object app extends ScalaModule { def scalaVersion = "2.13.3" def ivyDeps = Agg( ivy"com.lihaoyi::cask:0.6.7", ivy"com.lihaoyi::scalatags:0.9.1" ) override def sources = T.sources(baseDir / "display.scala") //override def resources = T.sources(baseDir / "static") }