Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Robey Pointer committed Apr 20, 2012
1 parent aeca70e commit d61aae8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
18 changes: 11 additions & 7 deletions lib/template/build.sbt.erb
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import com.twitter.sbt._
import com.twitter.scalatest._

seq((
Project.defaultSettings ++
StandardProject.newSettings ++
SubversionPublisher.newSettings ++
CompileThriftScrooge.newSettings
StandardProject.newSettings ++
SubversionPublisher.newSettings ++
CompileThriftScrooge.newSettings ++
ScalaTestMixins.testSettings
): _*)

organization := "com.twitter"
Expand All @@ -16,13 +18,15 @@ version := "1.0.0-SNAPSHOT"
libraryDependencies ++= Seq(
"org.scala-lang" % "jline" % "2.9.1",
"com.twitter" %% "scrooge-runtime" % "1.1.3",
"com.twitter" %% "finagle-core" % "2.0.1",
"com.twitter" %% "finagle-thrift" % "2.0.1",
"com.twitter" %% "finagle-ostrich4" % "2.0.1",
"com.twitter" %% "finagle-core" % "3.0.0",
"com.twitter" %% "finagle-thrift" % "3.0.0",
"com.twitter" %% "finagle-ostrich4" % "3.0.0",
"org.scalatest" %% "scalatest" % "1.7.1" % "test",
"com.twitter" %% "scalatest-mixins" % "1.0.0" % "test"
"com.twitter" %% "scalatest-mixins" % "1.0.3" % "test"
)

mainClass in (Compile, run) := Some("com.twitter.birdname.Main")

mainClass in (Compile, packageBin) := Some("com.twitter.birdname.Main")

CompileThriftScrooge.scroogeVersion := "2.5.4"
4 changes: 3 additions & 1 deletion lib/template/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ resolvers <<= (resolvers) { r =>

externalResolvers <<= (resolvers) map identity

addSbtPlugin("com.twitter" %% "sbt-package-dist" % "1.0.0")
addSbtPlugin("com.twitter" %% "sbt-package-dist" % "1.0.4")

addSbtPlugin("com.twitter" %% "sbt11-scrooge" % "1.0.0")

libraryDependencies += "com.twitter" %% "scalatest-mixins" % "1.0.3"

0 comments on commit d61aae8

Please sign in to comment.