-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
27 lines (14 loc) · 821 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
import com.typesafe.sbt.SbtStartScript
name := "thrinatra"
version := "0.1-SNAPSHOT"
scalaVersion := "2.10.3"
resolvers += "Twitter's Repository" at "http://maven.twttr.com/"
libraryDependencies += "com.twitter" %% "finatra" % "1.6.0"
libraryDependencies += "com.foursquare" %% "rogue-field" % "2.2.1" intransitive()
libraryDependencies += "com.foursquare" %% "rogue-index" % "3.0.0-beta13.1" intransitive()
libraryDependencies += "com.foursquare" %% "rogue-core" % "3.0.0-beta13.1" intransitive()
libraryDependencies += "com.foursquare" %% "rogue-spindle" % "3.0.0-beta13.1" intransitive()
libraryDependencies += "org.mongodb" % "mongo-java-driver" % "2.10.1"
libraryDependencies += "com.foursquare" % "common-thrift-bson" % "1.7.0"
seq(thriftSettings: _*)
seq(SbtStartScript.startScriptForJarSettings: _*)