I use leiningen and emacs + cider to develop clojure. A few days ago, after updating cider via emacs package manager, I get the following warning message when I run Mx cider-connect or Mx cider-jack-in .
; CIDER 0.9.0snapshot (package: 20150222.137) (Java 1.8.0_31, Clojure 1.6.0, nREPL 0.2.6) WARNING: CIDER requires nREPL 0.2.7 to work properly user>
The warning message clearly states that I need to upgrade nrepl to 0.2.7, however I do not know how to do this.
I installed leiningen via brew and it uses nrepl 0.2.6 .
$ lein repl nREPL server started on port 53218 on host 127.0.0.1 - nrepl://127.0.0.1:53218 REPL-y 0.3.5, nREPL 0.2.6 Clojure 1.6.0 Java HotSpot(TM) 64-Bit Server VM 1.8.0_31-b13 Docs: (doc function-name-here) (find-doc "part-of-name-here") Source: (source function-name-here) Javadoc: (javadoc java-object-or-class-here) Exit: Control+D or (exit) or (quit) Results: Stored in vars *1, *2, *3, an exception in *e user=>
Profile Content leiningen:
{:user {:plugins [[cider/cider-nrepl "0.9.0-SNAPSHOT"]]}}
Question:: How to update the version of nrepl used by leiningen?
emacs clojure leiningen
ntalbs Feb 24 '15 at 5:25 2015-02-24 05:25
source share