-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sc
45 lines (40 loc) · 1.35 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import mill._
import mill.scalalib._
object BurstTrieCheckout extends ScalaModule {
def scalaVersion = "2.11.12"//"2.11.4"
//def ivyDeps = Agg(ivy"com.nefariouszhen.trie::scala-burst-trie:0.2")
}
object AbiDex extends ScalaModule {
def scalaVersion = "2.11.12"//"2.11.4"
def moduleDeps = Seq(ARS,CrossEntropyLoss)
def ivyDeps = Agg(
ivy"com.nefariouszhen.trie::scala-burst-trie:0.2",
ivy"io.circe::circe-core:0.11.2"
)
object test extends ScalaModule {
def scalaVersion = "2.11.12"
def moduleDeps = Seq(AbiDex)
}
}
object ARS extends ScalaModule {
def scalaVersion = "2.11.12"
}
object CrossEntropyLoss extends ScalaModule {
def scalaVersion = "2.11.12"
}
object server extends ScalaModule {
def scalaVersion = "2.11.12"//"2.11.4"
def moduleDeps = Seq(BurstTrieCheckout, AbiDex)
def ivyDeps = Agg(
ivy"com.typesafe.play::play-json:2.6.14",
ivy"org.springframework:spring-core:5.3.22",
ivy"org.springframework:spring-beans:5.3.22",
ivy"org.springframework:spring-context:5.3.22",
ivy"org.springframework.boot:spring-boot:2.7.3",
ivy"org.springframework.boot:spring-boot-autoconfigure:2.7.3",
ivy"javax.servlet:javax.servlet-api:4.0.1",
ivy"javax.validation:validation-api:2.0.1.Final",
ivy"org.springframework:spring-web:5.3.22",
ivy"org.springframework.boot:spring-boot-starter-web:2.7.3"
)
}