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

Commit

Permalink
add 2.9.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
freels committed Feb 15, 2012
1 parent 5ed1449 commit fa7252a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ project.organization=com.twitter
project.name=twitterActors project.name=twitterActors
sbt.version=0.7.4 sbt.version=0.7.4
project.version=2.0.1-SNAPSHOT project.version=2.0.1-SNAPSHOT
build.scala.versions=2.8.0 2.7.7 build.scala.versions=2.9.1 2.8.0 2.7.7
project.initialize=false project.initialize=false
7 changes: 4 additions & 3 deletions project/build/TwitterActorsProject.scala
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ import com.twitter.sbt.{SubversionPublisher, StandardProject}




class TwitterActorsProject(info: ProjectInfo) extends StandardProject(info) with SubversionPublisher { class TwitterActorsProject(info: ProjectInfo) extends StandardProject(info) with SubversionPublisher {
val specs = buildScalaVersion match { val specs = buildScalaVersion match {
case "2.7.7" => "org.scala-tools.testing" % "specs" % "1.6.2.1" % "test" case "2.7.7" => "org.scala-tools.testing" % "specs" % "1.6.2.1" % "test"
case _ => "org.scala-tools.testing" % "specs_2.8.0" % "1.6.5" % "test" case "2.8.0" => "org.scala-tools.testing" %% "specs" % "1.6.5" % "test"
case _ => "org.scala-tools.testing" %% "specs" % "1.6.9" % "test"
} }


override def disableCrossPaths = false override def disableCrossPaths = false
override def subversionRepository = Some("http://svn.local.twitter.com/maven-public") override def subversionRepository = Some("https://svn.twitter.biz/maven-public")
} }

0 comments on commit fa7252a

Please sign in to comment.