This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-11-13
Channels
- # aleph (2)
- # announcements (1)
- # beginners (133)
- # cider (29)
- # cljdoc (9)
- # cljs-dev (2)
- # cljsjs (3)
- # cljsrn (1)
- # clojure (146)
- # clojure-dev (26)
- # clojure-europe (3)
- # clojure-italy (26)
- # clojure-japan (6)
- # clojure-nl (76)
- # clojure-spec (4)
- # clojure-uk (42)
- # clojurescript (17)
- # cursive (43)
- # datascript (1)
- # datomic (28)
- # emacs (4)
- # figwheel-main (13)
- # fulcro (26)
- # hyperfiddle (2)
- # jobs (9)
- # jobs-discuss (6)
- # leiningen (1)
- # mount (5)
- # onyx (8)
- # pathom (5)
- # pedestal (2)
- # re-frame (52)
- # reagent (21)
- # reitit (58)
- # ring-swagger (24)
- # shadow-cljs (95)
- # sql (14)
- # test-check (10)
- # yada (18)
@tcrawley I am building this project https://github.com/lispyclouds/clj-docker-client This wraps over https://github.com/spotify/docker-client which is completely in Java. I was deploying it with the usual lein deploy clojars
and it worked fine if i added [lispyclouds/clj-docker-client "0.1.3"]
in a project.clj with leiningen. But when i tried adding {:deps {lispyclouds/clj-docker-client {:mvn/version "0.1.3"}}}
to a deps.edn and tried (docker/image-ls conn)
i get the exception
ClassNotFoundException com.kenai.jffi.Type jdk.internal.loader.BuiltinClassLoader.loadClass (BuiltinClassLoader.java:583)
this is a dependency of the spoitfy docker client. This gets solved if i add the uberjar with local/root
in my deps.edn so i was thinking if i should upload the uberjar which i now realize is a bad idea 😞