This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-09-29
Channels
- # announcements (4)
- # babashka (66)
- # beginners (7)
- # cljs-dev (6)
- # clojure (12)
- # clojure-europe (28)
- # clojure-nl (1)
- # clojure-norway (75)
- # clojure-uk (16)
- # clojuredesign-podcast (1)
- # clojurescript (16)
- # datascript (6)
- # deps-new (2)
- # dev-tooling (40)
- # exercism (1)
- # fulcro (92)
- # hyperfiddle (25)
- # lsp (19)
- # malli (1)
- # meander (2)
- # nrepl (9)
- # off-topic (5)
- # pathom (1)
- # practicalli (1)
- # re-frame (20)
- # reitit (14)
- # releases (1)
- # sci (86)
- # shadow-cljs (216)
- # sql (13)
- # testing (4)
- # tools-deps (4)
- # vscode (3)
Hello, I'm trying to add https://mvnrepository.com/artifact/com.kohlschutter.junixsocket/junixsocket-core/2.7.2 as a dep as {:deps {com.kohlschutter.junixsocket/junixsocket-core {:mvn/version "2.7.2"}}}
and it can't seem to find it:
Error building classpath. Could not find artifact com.kohlschutter.junixsocket:junixsocket-core:jar:2.7.2 in central ( )
this is a pom only lib and works in leiningen with [com.kohlschutter.junixsocket/junixsocket-core "2.7.2" :extension "pom"]
. do i need to do something different for tools.deps?Pom-only libs are not currently supported, but you can include it’s deps instead
yeah thats what i ended up doing. thanks for the conformation!