Browse Source

databind wasn't being added

Patrick Falls 12 years ago
parent
commit
a00b3bab9f
1 changed files with 2 additions and 1 deletions
  1. 2 1
      finagle/build.sbt

+ 2 - 1
finagle/build.sbt

@@ -9,5 +9,6 @@ version := "1.0"
 libraryDependencies ++= Seq(
                 "com.twitter" %% "finagle-http" % "6.+",
                 "com.twitter" %% "finagle-mysql" % "6.+",
-                "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.+"
+                "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.+",
+		"com.fasterxml.jackson.core" % "jackson-databind" % "2.2.1"
                 )