Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
get cross-compilation working
  • Loading branch information
freels committed Oct 15, 2010
1 parent 97a76b4 commit 4a1eae0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project/build.properties
Expand Up @@ -5,5 +5,5 @@ project.name=json
sbt.version=0.7.4
project.version=2.1.4
def.scala.version=2.7.7
build.scala.versions=2.8.0
build.scala.versions=2.8.0 2.7.7
project.initialize=false
7 changes: 5 additions & 2 deletions project/build/ScalaJsonProject.scala
Expand Up @@ -3,8 +3,11 @@ import com.twitter.sbt._


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

val vscaladoc = "org.scala-tools" % "vscaladoc" % "1.1-md-3"

override def subversionRepository = Some("http://svn.local.twitter.com/maven-public/")
Expand Down

0 comments on commit 4a1eae0

Please sign in to comment.