This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-03-27
Channels
- # announcements (3)
- # aws (7)
- # babashka (11)
- # beginners (96)
- # clojure (15)
- # clojure-europe (9)
- # clojure-germany (2)
- # clojure-italy (1)
- # clojure-nl (3)
- # clojure-poland (3)
- # clojure-serbia (1)
- # clojurescript (13)
- # depstar (28)
- # fulcro (34)
- # graalvm (5)
- # honeysql (5)
- # malli (11)
- # off-topic (27)
- # pathom (9)
- # polylith (74)
- # portal (10)
- # re-frame (13)
- # releases (1)
- # ring (8)
- # shadow-cljs (3)
- # spacemacs (10)
- # tools-deps (8)
ok, this seems to only fail on emacs native comp, guess cider is not compatible with it
For running in the REPL the -A
flag worked for my deps.edn, -M
did not. Any idea why?
deps.edn
{:paths ["src"], :deps [org.clojure/clojure {:mvn/version "1.10.2"}], :aliases {:dev {:extra-paths ["resources"]}}}
Maybe I had something misconfigured above?
$ clojure --help | grep alias
-Oalias... Concatenated jvm option aliases, ex: -O:mem
-Ralias... Concatenated resolve-deps aliases, ex: -R:bench:1.9
-Calias... Concatenated make-classpath aliases, ex: -C:dev
-Malias... Concatenated main option aliases, ex: -M:test
-Aalias... Concatenated aliases of any kind, ex: -A:dev:mem
@erwinrooijakkers To use the -M
flag, Clojure CLI tools version 1.10.697 or above is required. It seems from the clojure --help output you have an older version than this. Several flags changed meaning at this version of Clojure CLI tools onward.
To see the version, use:
clojure -Sdescribe
Install the latest version from https://clojure.org/guides/getting_started👍 3
$ clojure -Sdescribe
{:version "1.10.1.536"
thanks!