-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sc
31 lines (26 loc) · 824 Bytes
/
build.sc
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
30
31
import mill._, scalalib._, publish._
object machine extends ScalaModule with PublishModule {
def artifactName = "fsm-machine"
def scalaVersion = "2.13.1"
def publishVersion = "0.0.1"
def ivyDeps = Agg(
ivy"com.lihaoyi::castor:0.1.1",
ivy"com.lihaoyi::pprint:0.5.9",
)
def pomSettings = PomSettings(
description = "fsm-machine",
organization = "au.com.carringbushsw",
url = "https://github.com/xraybat/scala-fsm-machine",
licenses = Seq(License.MIT),
versionControl = VersionControl.github("xraybat", "scala-fsm-machine"),
developers = Seq(
Developer("xraybat", "xraybat","https://github.com/xraybat")
)
)
object test extends Tests {
def testFrameworks = Seq("utest.runner.Framework")
def ivyDeps = Agg(
ivy"com.lihaoyi::utest::0.7.3",
)
}
}