This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-01-14
Channels
- # admin-announcements (17)
- # announcements (4)
- # beginners (47)
- # boot (347)
- # braid-chat (55)
- # bristol-clojurians (5)
- # cider (5)
- # cljs-dev (1)
- # clojure (111)
- # clojure-chicago (1)
- # clojure-russia (73)
- # clojure-ukraine (2)
- # clojurescript (162)
- # code-reviews (1)
- # community-development (199)
- # core-matrix (2)
- # cursive (29)
- # datomic (40)
- # devcards (13)
- # dirac (37)
- # docs (12)
- # editors-rus (2)
- # emacs (11)
- # events (26)
- # hoplon (2)
- # jobs (8)
- # ldnclj (31)
- # lein-figwheel (2)
- # off-topic (7)
- # om (59)
- # other-lisps (1)
- # portland-or (1)
- # proton (50)
- # re-frame (5)
- # reagent (13)
- # ring-swagger (5)
- # spacemacs (3)
- # yada (3)
hello
I've been struck by the "Error creating JavaParameters" REPL startup error.
Not sure why. Not sure where to find more log output or anything like that.
I've got a multi-module project with many large modules
and checkout dependencies in one "top-level" module
do I not need checkout dependencies when using Cursive?
I've got some cider-nrepl stuff in my .lein/profiles.clj that I've just removed, trying that...
interesting... Failed to collect dependencies for [#object[org.sonatype.aether.graph.Dependency 0x7b33a95b "org.clojure:clojure:jar:1.7.0 (compile)"]
this error is just for some of my modules, not all of them
I can start up a REPL for most of the library-style modules
@jcromartie: When Colin was helping me with the same issue, he pointed me to the Module settings. Make sure that it has an SDK set to “Project SDK” and that said SDK is a valid one
haha, ok, I'll give it a look
did you ever fix yours?
I saw you pop up in logs of this channel
and with no answers 😞
Not sure if I should ask this here, but does anyone run figwheel directly from Intellij/Cursive using the instructions here - https://github.com/bhauman/lein-figwheel/wiki/Running-figwheel-in-a-Cursive-Clojure-REPL
I'm able to get things working, but not sure what people are doing to deal with lein profile merging. I obviously could pass a config map of whatever settings I want for figwheel or create a figwheel.edn file, but neither sounds great as the complexity of my project.clj expands. Rather, I really just want to pass in a merged profile like running lein figwheel, but that doesn't play as well with cursive - among other things, I need to use a remote nrepl connection (did this in the past) in that case unless I'm missing something.
just a guess, but could it be a run configuration?
So in other words, everything works great with lein figwheel since it merges my profiles correctly, but per the docs, this doesn't happen if you run it via a clojure script to make it play nice with cursive. I haven't ever done much with merging lein profiles via code, only at the command prompt. Just wondering if someone here is using cursive + figwheel and has a better workflow than duplicating configuration in project.clj. In general, I'd like to move away from the remote nrepl approach.
@jcromartie: No solution yet, but it’s not the end of the world, so I’ve gotten by with the regular nREPL external to the project
so, "lein repl :headless" in the terminal?
then connect from Cursive?
that works
Or just edit the REPL configuration and check “Use nREPL in normal JVM process” instead of “Run nREPL with Leiningen"
@jcromartie: @snowell: I’ll try to look at this today.