This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-02-02
Channels
- # beginners (72)
- # boot (68)
- # cider (51)
- # clara (20)
- # cljs-dev (44)
- # cljsrn (7)
- # clojure (168)
- # clojure-brasil (1)
- # clojure-dev (48)
- # clojure-greece (2)
- # clojure-nl (29)
- # clojure-russia (4)
- # clojure-spec (19)
- # clojure-uk (28)
- # clojurescript (2)
- # cursive (9)
- # datascript (1)
- # datomic (105)
- # dirac (1)
- # docker (2)
- # duct (11)
- # emacs (19)
- # events (1)
- # figwheel (1)
- # fulcro (23)
- # garden (4)
- # graphql (5)
- # hoplon (46)
- # jobs (5)
- # juxt (13)
- # leiningen (6)
- # lumo (12)
- # off-topic (29)
- # parinfer (5)
- # re-frame (7)
- # reagent (6)
- # ring (2)
- # sql (5)
- # yada (6)
If I run lein deps
on this example project at the moment, I get an error caused by "org.eclipse.aether.transfer.ArtifactNotFoundException: Could not find artifact com.googlecode:jsendnsca-core:jar:1.3.1 in central (https://repo1.maven.org/maven2/)"
Is there anything other than ~/.lein/profile.clj I should check to see if I have something that would mess it up? It almost seems like it just can't find a repository it would usually expect to be able to find.
(defproject yolo "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url ""
:license {:name "Eclipse Public License"
:url ""}
:dependencies [[org.clojure/clojure "1.8.0"]
[com.googlecode/jsendnsca-core "1.3.1"]])
that dep is in the redhat repo, not maven central
so you’ll need to add that repository to your project.clj
so something like:
:repositories [["redhat" " "]]