lein-essthree
lein-essthree copied to clipboard
:snapshots false has no effect
My org doesn't generally deploy snapshot artifacts, and I'd just as soon have essthree not try to check for them.
I've got this in my project.clj:
:essthree
{:repository {:bucket "my-bucket"
:path "path"
:snapshots false}}
...but whenever essthree checks for a missing dependency it seems to look in both places, seemingly twice for each:
lein deps
Retrieving com/my-org/lib/0.27.0/lib-0.27.0.pom from essthree-snapshots
Retrieving com/my-org/lib/0.27.0/lib-0.27.0.pom from essthree-releases
Retrieving com/my-org/lib/0.27.0/lib-0.27.0.jar from essthree-snapshots
Retrieving com/my-org/lib/0.27.0/lib-0.27.0.jar from essthree-releases
Is there a way to get it just ignore the snapshots check atogether?