Skip to content

Commit

Permalink
Made lift deps intransitive.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris Nuttycombe committed Aug 15, 2011
1 parent 09e9d96 commit 99e7479
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import AltDependency._

object RosettaJsonBuild extends Build {
val buildOrganization = "com.reportgrid"
val buildVersion = "0.3.1"
val buildScalaVersion = "2.9.1.RC1"
val buildVersion = "0.3.2"
val buildScalaVersion = "2.9.1.RC2"

val blueeyes = GitAltDependency(_: java.io.File, file("../blueeyes"), RootProject(uri("git://github.com/jdegoes/blueeyes")))

Expand All @@ -17,7 +17,7 @@ object RosettaJsonBuild extends Build {
scalacOptions ++= Seq("-deprecation", "-unchecked"),
libraryDependencies ++= Seq(
"net.databinder" % "dispatch-http-json_2.9.0-1" % "0.8.3" % "provided",
"net.liftweb" % "lift-json_2.9.0-1" % "2.4-M2" % "provided",
"net.liftweb" % "lift-json_2.9.0-1" % "2.4-M2" % "provided" intransitive(),
"org.scala-tools.testing" % "scalacheck_2.9.0-1" % "1.9" % "test",
"org.scala-tools.testing" % "specs_2.9.0-1" % "1.6.8" % "test"
)
Expand Down

0 comments on commit 99e7479

Please sign in to comment.