lein-essthree icon indicating copy to clipboard operation
lein-essthree copied to clipboard

:snapshots false has no effect

Open timgilbert opened this issue 7 years ago • 0 comments

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?

timgilbert avatar Apr 14 '17 19:04 timgilbert