-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
43 lines (33 loc) · 1.1 KB
/
build.sbt
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
name := "cexshop"
version := "1.1.0"
// must be at least 2.11 to use hmt_textmodel
scalaVersion := "2.12.4"
run / connectInput := true
resolvers += Resolver.jcenterRepo
resolvers += Resolver.bintrayRepo("neelsmith","maven")
resolvers += Resolver.bintrayRepo("eumaeus", "maven")
javaOptions in run ++= Seq(
"-Xms256M",
"-Xmn16M",
"-Xmx4G"
)
val circeVersion = "0.10.0"
libraryDependencies ++= Seq(
"edu.holycross.shot.cite" %% "xcite" % "4.1.1",
"edu.holycross.shot" %% "ohco2" % "10.12.5",
"edu.holycross.shot" %% "orca" % "4.2.0",
"edu.holycross.shot" %% "scm" % "6.2.2",
"edu.holycross.shot" %% "greek" % "2.3.3",
"edu.holycross.shot" %% "citeobj" % "7.3.2",
"edu.holycross.shot" %% "gsphone" % "1.1.0",
"edu.furman.classics" %% "citealign" % "0.5.0",
"edu.furman.classics" %% "fumorph" % "0.12.0",
"org.homermultitext" %% "hmt-textmodel" % "4.0.0",
"edu.furman.classics" %% "citewriter" % "1.0.1"
)
libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-optics",
"io.circe" %% "circe-parser"
).map(_ % circeVersion)