-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
31 lines (22 loc) · 813 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
30
31
name := "prosemirror-xml-schemagen"
organization := "com.evolvedbinary.prosemirror"
version := "0.1"
startYear := Some(2017)
organizationName := "Adam Retter"
licenses += ("AGPL-3.0" -> new URL("https://opensource.org/licenses/agpl-3.0"))
homepage := Some(url("https://github.com/adamretter/prosemirror-xml-schemagen"))
scalaVersion := "2.12.4"
mainClass in Compile := Some("com.evolvedbinary.prosemirror.xmlschemagen.CmdLine")
libraryDependencies ++= {
val fs2V = "0.10.0-M8"
val catsV = "0.5"
val jacksonV = "2.9.2"
Seq(
"org.typelevel" %% "cats-effect" % catsV,
"co.fs2" %% "fs2-io" % fs2V,
"co.fs2" %% "fs2-core" % fs2V,
"com.github.scopt" %% "scopt" % "3.7.0",
"xerces" % "xercesImpl" % "2.11.0",
"com.fasterxml.jackson.core" % "jackson-core" % jacksonV
)
}