IllegalStateException: impossible to get artifacts when data has not been loaded for Guava 12.0?

房东的猫 提交于 2019-12-03 09:24:01
Gonfi den Tschal

Apparently more people had and have this issue, so I'm putting my solution as an answer:

Temporary fix As someone mentioned here Apache IVY error message? : impossible to get artifacts when data has not been loaded manually adding the dependency solves it: I've added

"com.google.guava" % "guava" % "12.0"

and the problem is gone.

Instead of using a lower version, you could try adding this line to .sbt file:

dependencyOverrides += "com.google.guava" % "guava" % "14.0.1"

Play 2.1.x uses sbt 0.12, which uses Ivy 2.3.0-rc1, but looks like this is still an issue. If you can come up with a reproduction steps using publicly available libraries, please open a Github issue with a link to this comment.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!