-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
33 lines (25 loc) · 1016 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
import com.twitter.sbt._
import com.twitter.scalatest._
seq((
Project.defaultSettings ++
StandardProject.newSettings ++
SubversionPublisher.newSettings ++
CompileThriftScrooge.newSettings ++
ScalaTestMixins.testSettings
): _*)
organization := "com.twitter"
name := "searchbird"
version := "1.0.0-SNAPSHOT"
libraryDependencies ++= Seq(
"org.scala-lang" % "jline" % "2.9.1",
"com.twitter" % "scrooge" % "3.0.1",
"com.twitter" % "scrooge-runtime_2.9.2" % "3.0.1",
"com.twitter" % "finagle-core" % "5.3.6",
"com.twitter" % "finagle-thrift" % "5.3.6",
"com.twitter" % "finagle-ostrich4" % "5.3.1",
"org.scalatest" %% "scalatest" % "1.7.1" % "test",
"com.twitter" %% "scalatest-mixins" % "1.1.0" % "test"
)
mainClass in (Compile, run) := Some("com.twitter.searchbird.Main")
mainClass in (Compile, packageBin) := Some("com.twitter.searchbird.Main")
CompileThriftScrooge.scroogeVersion := "3.0.1"