We use play 2.1.1 (scala) and in some efforts to bind our dependencies, we found that several old depots are loaded directly into the playback framework.
in particular, oauth.signpost contains http components 4.0 (and, in turn, commons-codec 1.3), while we have other dependencies on http-componentsts 4.1 and commons-codec 1.6
the documentation seems pretty sparse in this area - at least in the older 1.2.x game .syml dependencies were somewhat more explicit, but I can not find the links for the current version 2.1.x.
I would not want futz with the Build.scala framework in $ {PLAY2_HOME} / framework / project to remove the dependency (we do not need oauth.signpost in this particular application), but for now this seems to be the only way.
any pointers?
(edit: I also ran into this: Play Framework 2.1 Remove the main dependency that is associated with a specific transitive dependency, which I would prefer to be able to do this by removing all the explicit dependency on the main structure)
source
share