boot-clj

Classpath conflict: org.clojure/clojure version 1.7.0 already loaded, NOT loading version 1.8.0

ε祈祈猫儿з 提交于 2019-12-08 17:00:13
问题 When copying a build.boot file from an old project to a new one I got the following error and found nothing on Google: Classpath conflict: org.clojure/clojure version 1.7.0 already loaded, NOT loading version 1.8.0 回答1: You should just include [org.clojure/clojure "1.8.0"] with the same version as boot environment variable BOOT_CLOJURE_VERSION=1.8.0 into build.boot dependencies list. Another way to get rid of this issues is to exclude clojure dependency from several dependencies in the list.

Clojure: boot repl in a particular namespace

我是研究僧i 提交于 2019-12-03 14:15:46
问题 I have boot-clj installed and want to be able to edit a .clj file in an external editor and separately have a command line REPL running from which I can call the functions that I change in the .clj file. No special reloading commands should be required. Another thing is I don't want to have to manually type commands to include namespaces - I would like to just run a script that brings me into the namespace, so I can call existing functions right away. Name of the file: C:\dev\my-project\src