This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-12-30
Channels
- # aleph (25)
- # announcements (20)
- # babashka (29)
- # babashka-sci-dev (12)
- # beginners (27)
- # biff (3)
- # clojure (29)
- # clojure-europe (21)
- # clojure-nl (1)
- # clojure-norway (1)
- # clojurescript (3)
- # clr (5)
- # code-reviews (4)
- # data-science (7)
- # datahike (6)
- # datascript (3)
- # emacs (9)
- # fulcro (5)
- # graalvm (10)
- # malli (15)
- # nbb (7)
- # off-topic (17)
- # pathom (9)
- # polylith (4)
- # practicalli (15)
- # reitit (3)
- # releases (2)
- # rum (1)
- # shadow-cljs (73)
- # squint (34)
- # tools-deps (3)
- # xtdb (11)
Why is clj
giving me
> Error building classpath. Could not find artifact com.datomic:dev-local:jar:1.0.243 in central (https://repo1.maven.org/maven2/)
when I have it in the local m2 cache?
ls ~/.m2/repository/com/datomic/dev-local/1.0.243/dev-local-1.0.243.jar
/Users/me/.m2/repository/com/datomic/dev-local/1.0.243/dev-local-1.0.243.jar
Do I need to explicitly tell deps to look in there?!As I understand it Datomic dev-local libs (or datomic) are not available from Maven central (as its a commercial project) https://docs.datomic.com/cloud/dev-local.html has details of installing and using this library, basically add the following to the project deps.edn
{com.datomic/dev-local
{:mvn/version "1.0.243"}}
That is true but I have already got them from where they are and have them cached in .m2/repository/
and would expect clj to use it from there, even if it is not in mvn central
😕 1