This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-11-17
Channels
- # bangalore-clj (4)
- # beginners (60)
- # boot (63)
- # cider (2)
- # cljs-dev (22)
- # cljsrn (3)
- # clojars (32)
- # clojure (133)
- # clojure-gamedev (1)
- # clojure-germany (17)
- # clojure-italy (1)
- # clojure-russia (11)
- # clojure-serbia (16)
- # clojure-spec (35)
- # clojure-uk (75)
- # clojurebridge (1)
- # clojurescript (83)
- # community-development (25)
- # core-async (43)
- # cursive (15)
- # datomic (28)
- # emacs (2)
- # fulcro (108)
- # graphql (5)
- # hoplon (15)
- # lein-figwheel (6)
- # leiningen (39)
- # lumo (106)
- # new-channels (1)
- # off-topic (4)
- # om (26)
- # om-next (53)
- # onyx (46)
- # other-languages (2)
- # perun (1)
- # protorepl (5)
- # re-frame (13)
- # ring (18)
- # ring-swagger (1)
- # rum (6)
- # shadow-cljs (82)
- # spacemacs (19)
- # specter (5)
- # sql (3)
- # test-check (31)
- # unrepl (12)
- # untangled (2)
- # vim (109)
Hi, I’m looking at https://github.com/clojars/clojars-web/wiki/About#how-do-i-delete-a-jar and I wonder if project rename could be a considered a valid reason for deleting a released artifact. In my case, I have released 0.1.0-alpha1
version that nobody else uses and I decided to rename the project before it’s too late.
hello kind clojarians. A new version of autodoc/autodoc-collect (1.1.4) was deployed this morning https://clojars.org/autodoc/autodoc-collect/versions/1.1.4 however I have trouble getting it.
[~/tmp/prot]$ lein deps :tree
Could not find artifact autodoc:autodoc-collect:jar:1.1.4 in central ( )
Could not transfer artifact autodoc:autodoc-collect:jar:1.1.4 from/to clojars ( ): Received fatal alert: protocol_version
Could not transfer artifact autodoc:autodoc-collect:pom:1.1.4 from/to clojars ( ): Received fatal alert: protocol_version
This could be due to a typo in :dependencies, file system permissions, or network issues.
If you are behind a proxy, try setting the 'http_proxy' environment variable.
^^ with a Leiningen project.clj with only :dependencies [[autodoc/autodoc-collect "1.1.4"]]
using lein 2.8.1
java 1.7 in this terminal
lein 2.8.1 switched the clojars repo url to point to the CDN, which should support java 1.7, but may require a newer patch release
interesting
if you add :repositories [["clojars" {:url "
to your :user
profile in ~/.lein/profiles.clj
, you'll hit the on-server repo (which is still valid and in-sync with the CDN)
on 1.7.0_25-b15 in particular
I switched to java 1.8 and that did fix it
did not expect that to be a java version thing
makes sense
hey, in the clojure cli stuff, what repo should I use as the default clojars repo?
I don’t have mirror support yet
@kumarshantanu I would just leave the old name there, deletion is problematic, and we'd like to avoid it if possible
@alexmiller I would use https://repo.clojars.org/ - that's the CDN, and we're trying to move all the tooling to it, since it is more reliable in theory
I’m using https://clojars.org/repo/ - is the cname preferred?
I’m ok with that as long as I know how to tell people to fix it :)
I somewhat intentionally run an old jvm as my default to avoid accidentally relying on anything too new when doing clojure dev :)