Fork me on GitHub
#leiningen
<
2018-02-02
>
cddr16:02:34

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"]])

Alex Miller (Clojure team)16:02:27

that dep is in the redhat repo, not maven central

Alex Miller (Clojure team)16:02:36

so you’ll need to add that repository to your project.clj

Alex Miller (Clojure team)16:02:06

so something like:

:repositories [["redhat" ""]]

cddr17:02:05

Ah thanks.