lib/template/project/build/BirdNameProject.scala.erb in scala-bootstrapper-0.7.2 vs lib/template/project/build/BirdNameProject.scala.erb in scala-bootstrapper-0.8.0

- old
+ new

@@ -7,22 +7,28 @@ * * The % operator is just turning strings into maven dependency declarations, so lines like * val example = "com.example" % "exampleland" % "1.0.3" * mean to add a dependency on exampleland version 1.0.3 from provider "com.example". */ -class BirdNameProject(info: ProjectInfo) extends StandardServiceProject(info) - with CompileThriftScala - with NoisyDependencies - with DefaultRepos - with SubversionPublisher -{ - val finagleVersion = "1.2.1" +class BirdNameProject(info: ProjectInfo) extends StandardServiceProject(info) + with CompileThriftScala + with NoisyDependencies + with DefaultRepos + with Tartifactory + with TartifactoryRepos + with SubversionPublisher { + + val twitterInternal = "binaries.local.twitter.com" at "http://binaries.local.twitter.com/maven/" + + val finagleVersion = "1.2.5" + val finagleC = "com.twitter" % "finagle-core" % finagleVersion val finagleT = "com.twitter" % "finagle-thrift" % finagleVersion val finagleO = "com.twitter" % "finagle-ostrich4" % finagleVersion // thrift val libthrift = "thrift" % "libthrift" % "0.5.0" + val util = "com.twitter" % "util" % "1.8.3" override def originalThriftNamespaces = Map("BirdName" -> "com.twitter.birdname.thrift") val scalaThriftTargetNamespace = "com.twitter.birdname" val slf4jVersion = "1.5.11"