This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-03-20
Channels
- # announcements (5)
- # asami (162)
- # babashka (15)
- # beginners (1)
- # bitcoin (1)
- # calva (10)
- # chlorine-clover (3)
- # cider (1)
- # clj-kondo (4)
- # cljfx (10)
- # cljs-dev (1)
- # cljsrn (7)
- # clojure (38)
- # clojure-europe (69)
- # clojure-germany (2)
- # clojure-serbia (1)
- # clojurescript (22)
- # community-development (2)
- # conjure (1)
- # core-async (2)
- # cursive (14)
- # datahike (4)
- # fulcro (7)
- # graalvm (34)
- # helix (13)
- # honeysql (3)
- # lsp (134)
- # meander (56)
- # membrane (1)
- # off-topic (35)
- # practicalli (31)
- # releases (4)
- # rewrite-clj (5)
- # tools-deps (3)
- # vscode (6)
- # xtdb (8)
I've updated my suggestions for a minimal LSP setup for Spacemacs, most of which is relevant to any other Emacs setup. The configuration avoids conflicting with CIDER and removes all the cljfmt rules which LSP puts in by default. I also tweaked the doom-gruvbox-light theme to make the symbol highlighting clash less, removing the background color and just using a bold font https://practicalli.github.io/spacemacs/install-spacemacs/clojure-lsp/configure-lsp-and-cider.html
Hi - latest version of Practicalli’s Clojure Deps.edn is giving me ‘Could not find artifact com.github.seancorfield:next.jdbc:jar:2.0.193 in central (https://repo1.maven.org/maven2/)’ on running clojure -X:project/jar - anyone else seen this? (Cloned the CLojure Deps.edn repo last night)
I tried updating to that earlier and got a different error ‘Execution error (FileNotFoundException) at clojure.run.exec/requiring-resolve’ (exec.clj:31). Could not locate hf/depstar__init.class, hf/depstar.clj or hf/depstar.cljc on classpath.' at which point I thought I would be lazy and see if anyone else has worked this through 😀
Local project deps.edn ‘…:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version “1.1.646”}} :exec-fn hf.depstar/jar :exec-args {:jar “libplayground.jar” :sync-pom true}}’
latest output is the second error message still ‘Execution error (FileNotFoundException) at clojure.run.exec/requiring-resolve’ (exec.clj:31). Could not locate hf/depstar__init.class, hf/depstar.clj or hf/depstar.cljc on classpath.'
the project/jar alias in ~/.clojure/deps.edn is ‘:project/jar {:replace-deps {com.github.seancorfield/next.jdbc {:mvn/version “1.1.646”}} :exec-fn hf.depstar/jar :exec-args {:jar “project.jar” :aot true}}’
@rossajmcd sorry, it was the right version but the wrong library name. I copied next.jdbc library name into the :project/jar and :project/uberjar aliases instead of the new names for depstar. They both use the new form of fully qualified name (except for the last part).
I've pushed the fix to the project, sorry for the confusion.
Another quick update to practicalli/clojure-deps-edn • suppress SLF4J warning with :project/outdated alias • removed older version 1.x of depstar now 2.x is established • several library version updates