Skip to content

Commit

Permalink
upgrade some dependencies and fix #136
Browse files Browse the repository at this point in the history
  • Loading branch information
tminglei committed Mar 14, 2015
1 parent b3d268a commit ba7ffa8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ object SlickPgBuild extends Build {
Seq (
"org.scala-lang" % "scala-reflect" % scalaVersion % "provided",
"com.typesafe.slick" %% "slick" % "2.1.0",
"org.postgresql" % "postgresql" % "9.4-1200-jdbc41",
"org.postgresql" % "postgresql" % "9.4-1201-jdbc41",
"junit" % "junit" % "4.11" % "test",
"com.novocode" % "junit-interface" % "0.10" % "test"
"com.novocode" % "junit-interface" % "0.11" % "test"
) ++ extractedLibs
}

Expand All @@ -82,6 +82,7 @@ object SlickPgBuild extends Build {
)
)

val json4sVersion = "3.2.10"
lazy val slickPgProject = Project(id = "slick-pg", base = file("."),
settings = Defaults.coreDefaultSettings ++ commonSettings ++ Seq(
name := "slick-pg",
Expand All @@ -90,9 +91,9 @@ object SlickPgBuild extends Build {
"joda-time" % "joda-time" % "2.4" % "provided",
"org.joda" % "joda-convert" % "1.7" % "provided",
"org.threeten" % "threetenbp" % "1.0" % "provided",
"org.json4s" %% "json4s-ast" % "3.2.11" % "provided",
"org.json4s" %% "json4s-core" % "3.2.11" % "provided",
"org.json4s" %% "json4s-native" % "3.2.11" % "test",
"org.json4s" %% "json4s-ast" % json4sVersion % "provided",
"org.json4s" %% "json4s-core" % json4sVersion % "provided",
"org.json4s" %% "json4s-native" % json4sVersion % "test",
"com.typesafe.play" %% "play-json" % "2.3.0" % "provided",
"io.spray" %% "spray-json" % "1.3.1" % "provided",
"io.argonaut" %% "argonaut" % "6.0.4" % "provided",
Expand Down

0 comments on commit ba7ffa8

Please sign in to comment.