-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
35 lines (27 loc) · 1019 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
32
33
34
name := "zettelgeist"
version := "1.0"
scalaVersion := "2.11.11"
scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked")
mainClass in assembly := Some("zettelgeist.Import")
resolvers ++= Seq(
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
)
val circeVersion = "0.8.0"
libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser"
).map(_ % circeVersion)
libraryDependencies ++= Seq(
"io.circe" %% "circe-yaml" % "0.6.1",
"org.json4s" %% "json4s-native" % "3.5.2",
"org.json4s" %% "json4s-jackson" % "3.5.2",
"com.github.scopt" %% "scopt" % "3.6.0",
"com.novocode" % "junit-interface" % "latest.release" % Test,
"org.scalatest" %% "scalatest" % "latest.release" % Test,
"com.github.tototoshi" %% "scala-csv" % "1.3.4",
"com.lihaoyi" %% "ammonite-ops" % "1.0.0",
"com.typesafe.slick" %% "slick" % "3.2.0",
"org.slf4j" % "slf4j-nop" % "1.6.4",
"com.h2database" % "h2" % "1.3.175"
)