Fork me on GitHub
#boot
<
2020-04-27
>
dave01:04:08

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.boot

dave01:04:21

for 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)

dave01:04:57

it allows me to run e.g. boot cider repl in a project to start a REPL that has the cider and refactor-nrepl middleware included