I am trying to use the GCS library in my project:
val GoogleCloud = Seq(
"com.google.appengine.tools" % "appengine-gcs-client" % "0.5" exclude("com.google.guava", "guava-jdk5"),
"com.google.appengine" % "appengine-api-stubs" % "1.9.28",
"com.google.appengine" % "appengine-api-1.0-sdk" % "1.9.28",
"com.google.guava" % "guava" % "19.0-rc2"
)
I get this error:
Exception in thread "main" java.lang.NoSuchMethodError: com.google.common.base.Stopwatch.createUnstarted()Lcom/google/common/base/Stopwatch;
I added the exclude
above as suggested here but no luck.