-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
29 lines (22 loc) · 908 Bytes
/
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
name := "Chant"
crossScalaVersions in ThisBuild := Seq("2.11.8", "2.12.4")
scalaVersion := (crossScalaVersions in ThisBuild).value.last
name := "chant"
organization := "io.github.hcmid"
version := "1.0.0"
licenses += ("GPL-3.0",url("https://opensource.org/licenses/gpl-3.0.html"))
resolvers += Resolver.jcenterRepo
resolvers += Resolver.bintrayRepo("neelsmith", "maven")
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"edu.holycross.shot.cite" %% "xcite" % "3.7.0",
"edu.holycross.shot" %% "scm" % "6.2.0",
"edu.holycross.shot" %% "ohco2" % "10.11.2",
"edu.holycross.shot" %% "citeobj" % "7.2.1",
"edu.holycross.shot" %% "cex" % "6.2.1",
"edu.holycross.shot" %% "midvalidator" % "6.0.2",
"edu.holycross.shot" %% "latphone" % "2.4.0",
"edu.holycross.shot" %% "virgapes" % "6.1.0"
)
tutTargetDirectory := file("docs")
tutSourceDirectory := file("tut")