clojars

http://clojars.org discussion and “support”, see http://status.clojars.org for status.
borkdude 2020-01-26T15:14:58.021900Z

Dependency question. When using a -SNAPSHOT version, I noticed you can replace the -SNAPSHOT with a date: clojure -Sdeps '{:deps {clj-kondo {:mvn/version "2020.01.14-20200126.145730-7"}}}' -m clj-kondo.main --lint - --config '{:output {:format :edn}}' <<< '(inc)' Are the dated snapshot versions persisted forever on clojars?

2020-01-26T15:41:10.022100Z

Yep! A timestamped snapshot is no different from a regularly versioned release. -SNAPSHOT is just a pointer to the latest timestamped release. That means you also cannot overwrite a timestamped release - they are immutable as well.

❤️ 1
borkdude 2020-01-26T15:42:09.022300Z

Cool! How can I get timestamped releases from the clojars web page?

2020-01-26T15:57:08.022500Z

They aren't exposed in the UI - you have to look in the repo (http://repo.clojars.org/clj-kondo/clj-kondo/2020.01.14-SNAPSHOT/) or at the maven-metadata file for the snapshot (http://repo.clojars.org/clj-kondo/clj-kondo/2020.01.14-SNAPSHOT/maven-metadata.xmll)

borkdude 2020-01-26T15:58:25.022700Z

Thanks!

2020-01-26T15:58:35.022900Z

My pleasure!