Advertisement
Guest User

Untitled

a guest
Jun 5th, 2014
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. ~/.lein/profiles.clj:
  2. {:user {:dependencies [[org.clojure/clojure "1.6.0"]]
  3. :plugins [[cider/cider-nrepl "0.7.0-SNAPSHOT"]]}}
  4.  
  5. project.clj:
  6. (defproject learning "0.1.0-SNAPSHOT"
  7. :description "Repo to hold code generated while learning clojure"
  8. :url "http://github.com/mordocai/learning-clojure/"
  9. :license {:name "BSD 3-Clause License"
  10. :url "http://opensource.org/licenses/BSD-3-Clause"}
  11. :dependencies [[org.clojure/clojure "1.6.0"]]
  12. :main ^:skip-aot learning.core
  13. :target-path "target/%s"
  14. :profiles {:uberjar {:aot :all}})
  15.  
  16. M-x cider-version:
  17. CIDER 0.7.0alpha (package: 20140605.854)
  18.  
  19. cider-jack-in while in core.clj file of project error:
  20. You can run the command `cider-jack-in' with C-c M-j
  21. Starting nREPL server...
  22. nREPL server started on 41155
  23. Connecting to nREPL server on localhost:41155...
  24. Error: (error "Can't find nREPL middleware providing op stacktrace. Please, install cider-nrepl and restart CIDER")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement