-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
41 lines (29 loc) · 1.04 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
name := "oedipus2019"
version := "1.2.0"
// must be at least 2.11 to use hmt_textmodel
scalaVersion := "2.12.8"
run / connectInput := true
resolvers += Resolver.jcenterRepo
resolvers += Resolver.bintrayRepo("neelsmith","maven")
resolvers += Resolver.bintrayRepo("eumaeus", "maven")
resolvers += sbt.Resolver.bintrayRepo("denigma", "denigma-releases")
Compile / run / fork := true
connectInput in run := true
javaOptions in run ++= Seq(
"-Xms256M",
"-Xmn16M",
"-Xmx4G"
)
libraryDependencies ++= Seq(
"com.github.tototoshi" %% "scala-csv" % "1.3.6",
"edu.holycross.shot.cite" %% "xcite" % "4.1.2",
"edu.holycross.shot" %% "ohco2" % "10.18.1",
"edu.holycross.shot" %% "scm" % "7.2.0",
"edu.holycross.shot" %% "citebinaryimage" % "3.1.1",
"edu.holycross.shot" %% "citeobj" % "7.4.0",
"edu.holycross.shot" %% "citerelations" % "2.6.0",
"edu.holycross.shot" %% "cex" % "6.4.0",
"edu.holycross.shot" %% "greek" % "2.4.0",
"edu.furman.classics" %% "citewriter" % "1.2.2",
"com.github.pathikrit" %% "better-files" % "3.8.0"
)