This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-04-27
Channels
- # aws (19)
- # babashka (47)
- # beginners (111)
- # boot (3)
- # bristol-clojurians (3)
- # chlorine-clover (2)
- # cider (13)
- # cljs-dev (8)
- # clojure (143)
- # clojure-europe (11)
- # clojure-germany (10)
- # clojure-italy (3)
- # clojure-losangeles (1)
- # clojure-nl (1)
- # clojure-spec (6)
- # clojure-survey (3)
- # clojure-uk (42)
- # clojurescript (229)
- # conjure (131)
- # cursive (21)
- # data-science (18)
- # datomic (4)
- # emacs (21)
- # events (2)
- # figwheel-main (12)
- # fulcro (18)
- # graalvm (1)
- # hoplon (40)
- # jobs (1)
- # joker (17)
- # kaocha (1)
- # lambdaisland (1)
- # off-topic (19)
- # rdf (7)
- # re-frame (31)
- # reagent (26)
- # reitit (20)
- # rum (4)
- # shadow-cljs (106)
- # sql (17)
- # testing (5)
- # vim (2)
no, that looks all kinds of messed up 😄 a boot.properties file should look something like this:
#
#Sun Apr 26 00:00:37 PDT 2020
BOOT_CLOJURE_NAME=org.clojure/clojure
BOOT_CLOJURE_VERSION=1.10.1
BOOT_VERSION=2.8.3
the other stuff you have above looks like a variation of what you might find in a profile.bootfor example, i have this task in my profile.boot:
(deftask cider
"Include CIDER middleware, to support editor REPL tooling."
[]
(with-pass-thru _
(require 'boot.repl)
(swap! @(resolve 'boot.repl/*default-dependencies*)
concat '[[cider/cider-nrepl "0.19.0-SNAPSHOT"]
[refactor-nrepl "2.4.0"]])
(swap! @(resolve 'boot.repl/*default-middleware*)
concat '[cider.nrepl/cider-middleware
refactor-nrepl.middleware/wrap-refactor])))
(disclaimer: those versions of cider-nrepl and refactor-nrepl are probably super old at this point. i haven't used this task in a long time)