This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-07-29
Channels
- # announcements (10)
- # aws (4)
- # babashka (42)
- # beginners (208)
- # bristol-clojurians (2)
- # calva (13)
- # chlorine-clover (52)
- # cider (5)
- # clara (22)
- # clj-kondo (2)
- # clojars (14)
- # clojure (107)
- # clojure-europe (24)
- # clojure-nl (4)
- # clojure-uk (6)
- # clojurescript (3)
- # conjure (20)
- # cursive (23)
- # datascript (2)
- # datomic (15)
- # figwheel-main (3)
- # fulcro (23)
- # jobs (3)
- # kaocha (5)
- # keechma (3)
- # local-first-clojure (1)
- # malli (13)
- # off-topic (16)
- # planck (6)
- # re-frame (8)
- # reagent (3)
- # reitit (1)
- # releases (1)
- # remote-jobs (1)
- # rum (1)
- # sci (37)
- # shadow-cljs (16)
- # tools-deps (158)
- # vim (3)
- # xtdb (8)
I'd like to deploy a jar on clojars under the groupId "org.soulspace.clj" but I get an Access denied/Forbidden. http://soulspace.org is my personal domain.
Is there something I've overlooked? I can't find a "create group" or so in the clojars dashboard.
Groups are created/claimed when you make the first to them, so there is no explicit create step. I don't see that group in clojars, so something else may be going on. Are you using a deploy token? Can you paste the full output from your deploy attempt?
soulman@neptun:/devel/git/CljBase/clj.base$ /devel/lein deploy clojars
No credentials found for clojars
See lein help deploying
for how to configure credentials to avoid prompts.
Username: lsolbach
Password:
Created /home/soulman/devel/git/CljBase/clj.base/target/clj.base-0.8.1.jar
Wrote /home/soulman/devel/git/CljBase/clj.base/pom.xml
Sending org/soulspace/clj/clj.base/0.8.1/clj.base-0.8.1.jar (16k)
to https://clojars.org/
Could not transfer artifact org.soulspace.clj:clj.base:jar:0.8.1 from/to clojars (https://clojars.org): Access denied to: https://clojars.org/org/soulspace/clj/clj.base/0.8.1/clj.base-0.8.1.jar, ReasonPhrase: Forbidden.
Sending org/soulspace/clj/clj.base/0.8.1/clj.base-0.8.1.pom (2k)
to https://clojars.org/
Could not transfer artifact org.soulspace.clj:clj.base:pom:0.8.1 from/to clojars (https://clojars.org): Access denied to: https://clojars.org/org/soulspace/clj/clj.base/0.8.1/clj.base-0.8.1.pom, ReasonPhrase: Forbidden.
Failed to deploy artifacts: Could not transfer artifact org.soulspace.clj:clj.base:jar:0.8.1 from/to clojars (https://clojars.org): Access denied to: https://clojars.org/org/soulspace/clj/clj.base/0.8.1/clj.base-0.8.1.jar, ReasonPhrase: Forbidden.
Do you have custom configuration in your project.clj overriding the clojars url? It should be https://repo.clojars.org or https://clojars.org/repo/, but it looks like your requests are going to https://clojars.org
I'v added :deploy-repositories [["clojars" {:sign-releases false :url "https://clojars.org"}]])
That worked. 🙂
Thanks alot
My first jar on clojars 😄