Skip to content

Commit

Permalink
Merge branch '2.2.x' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
rossabaker committed Dec 31, 2012
2 parents 86189ca + 0ba6c83 commit fd6214e
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions project/build.scala
Expand Up @@ -231,7 +231,7 @@ object ScalatraBuild extends Build {
libraryDependencies += servletApiTest,
libraryDependencies += jettyDep("jetty-websocket"),
libraryDependencies ++= Seq(jettyWebapp % "container;test", slf4jSimple),
libraryDependencies += "org.json4s" %% "json4s-jackson" % "3.0.0",
libraryDependencies += json4sDep("json4s-jackson"),
description := "Scalatra example project"
)
) dependsOn(
Expand Down Expand Up @@ -284,18 +284,19 @@ object ScalatraBuild extends Build {

val junit = "junit" % "junit" % "4.11"

val json4sExt = "org.json4s" %% "json4s-ext" % "3.0.0"
val json4sNative = "org.json4s" %% "json4s-native" % "3.0.0"
def json4sDep(name: String) = "org.json4s" %% name % "3.1.0"
val json4sExt = json4sDep("json4s-ext")
val json4sNative = json4sDep("json4s-native")

val json4s = Seq(
"org.json4s" %% "json4s-core" % "3.0.0",
json4sDep("json4s-core"),
json4sNative % "provided",
"org.json4s" %% "json4s-jackson" % "3.0.0" % "provided"
json4sDep("json4s-jackson") % "provided"
)

val mockitoAll = "org.mockito" % "mockito-all" % "1.9.0"

val scalate = "org.fusesource.scalate" % "scalate-core_2.9" % "1.6.0"
val scalate = "org.fusesource.scalate" % "scalate-core_2.9" % "1.6.1"

val scalatest = "org.scalatest" %% "scalatest" % "1.8"

Expand Down

0 comments on commit fd6214e

Please sign in to comment.