remove unused guava dependency

This commit is contained in:
Thibault Duplessis 2016-11-03 15:48:48 +01:00
parent de63ae6497
commit a7e633602d
2 changed files with 1 additions and 2 deletions

View file

@ -143,7 +143,7 @@ object ApplicationBuild extends Build {
)
lazy val memo = project("memo", Seq(common, db)).settings(
libraryDependencies ++= Seq(guava, findbugs, spray.caching) ++ provided(play.api, reactivemongo.driver)
libraryDependencies ++= Seq(findbugs, spray.caching) ++ provided(play.api, reactivemongo.driver)
)
lazy val search = project("search", Seq(common, hub)).settings(

View file

@ -29,7 +29,6 @@ object Dependencies {
val scalalib = "com.github.ornicar" %% "scalalib" % "5.6"
val config = "com.typesafe" % "config" % "1.3.0"
val apache = "org.apache.commons" % "commons-lang3" % "3.4"
val guava = "com.google.guava" % "guava" % "20.0"
val findbugs = "com.google.code.findbugs" % "jsr305" % "3.0.1"
val hasher = "com.roundeights" %% "hasher" % "1.2.0"
val jgit = "org.eclipse.jgit" % "org.eclipse.jgit" % "3.2.0.201312181205-r"