I have a maven dependency in my sbt project that had one of its dependencies apparently unpublished (I have filed an issue for that problem already).
I still have a copy of that dependency and I'm trying to figure out how to get sbt to pick it up from a project specific location, rather than the local ivy cache, since this project needs to build on machines that don't have a pre-populated ivy store.
I've tried placing it into the project's lib directly but that does not seem to get considered as part of the dependency resolution of sub-dependencies.
EDIT: I rephrased this question to be about sbt dependency management rather than the specific library I am having problems with
Regarding Duplication: This is not a question about publishing un-managed jars to a local maven repository. It is about how to satisfy a dependency of a managed dependency via an unmanaged jar.