forked from velvia/cassandra-gdelt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
21 lines (17 loc) · 782 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name := "cassandra-gdelt"
val phantomVersion = "1.4.0"
scalaVersion := "2.10.4"
resolvers ++= Seq(
"Typesafe repository releases" at "http://repo.typesafe.com/typesafe/releases/",
"Velvia Bintray" at "https://dl.bintray.com/velvia/maven",
"twitter-repo" at "http://maven.twttr.com",
"websudos-repo" at "http://maven.websudos.co.uk/ext-release-local"
)
libraryDependencies ++= Seq(
"com.opencsv" % "opencsv" % "3.3",
// "org.capnproto" % "runtime" % "0.1.0",
"org.velvia.filo" %% "filo-scala" % "0.1.3",
"com.websudos" %% "phantom-dsl" % phantomVersion,
"com.websudos" %% "phantom-zookeeper" % phantomVersion exclude(
"com.twitter", "finagle-zookeeper_2.10")
)