Skip to content

Commit

Permalink
[split] finagle sbt build: fix up deps, versions.
Browse files Browse the repository at this point in the history
RB_ID=69882
TBR=true
  • Loading branch information
mariusae committed Jun 7, 2012
1 parent 7cd94f1 commit 188d532
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ import com.twitter.sbt._

object Finagle extends Build {
val zkVersion = "3.3.4"
val utilVersion = "4.0.1"
val utilVersion = "5.1.2"
val nettyLib = "io.netty" % "netty" % "3.4.1.Final" withSources()
val ostrichLib = "com.twitter" %% "ostrich" % "7.0.0" withSources()
val ostrichLib = "com.twitter" % "ostrich" % "8.0.1" withSources()
val thriftLibs = Seq(
"org.apache.thrift" % "libthrift" % "0.5.0" intransitive(),
"org.slf4j" % "slf4j-nop" % "1.5.8" % "provided"
)

def util(which: String) = "com.twitter" %% ("util-"+which) % utilVersion withSources()
def util(which: String) = "com.twitter" % ("util-"+which) % utilVersion withSources()

val sharedSettings = Seq(
version := "4.0.3-SNAPSHOT",
version := "5.0.3-SNAPSHOT",
organization := "com.twitter",
SubversionPublisher.subversionRepository := Some("https://svn.twitter.biz/maven-public"),
libraryDependencies ++= Seq(
Expand Down Expand Up @@ -91,7 +91,7 @@ object Finagle extends Build {
sharedSettings
).settings(
name := "finagle-core",
libraryDependencies ++= Seq(nettyLib, util("core"), util("collection"), util("hashing"))
libraryDependencies ++= Seq(nettyLib, util("core"), util("collection"), util("hashing"), util("jvm"))
).dependsOn(finagleTest % "test")

lazy val finagleOstrich4 = Project(
Expand Down

0 comments on commit 188d532

Please sign in to comment.