Function: cider-jar-clojars-url

cider-jar-clojars-url is a byte-compiled function defined in cider-jar.el.

Signature

(cider-jar-clojars-url GROUP ARTIFACT VERSION)

Documentation

URL to download a specific jar from Clojars.

GROUP, ARTIFACT, and VERSION are the components of the Maven coordinates.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-jar.el
(defun cider-jar-clojars-url (group artifact version)
  "URL to download a specific jar from Clojars.
GROUP, ARTIFACT, and VERSION are the components of the Maven coordinates."
  (concat "https://repo.clojars.org/" group "/" artifact "/"
          version
          "/cider-nrepl-"
          version
          ".jar"))