Re: [ClojureScript] Re: Figwheel and Java 9 compatibility

2018-05-03 Thread Johannes
Am Donnerstag, 3. Mai 2018 22:51:33 UTC+2 schrieb Alan Thompson: > > And what happens if you type `lein figwheel` ? > The same problem as before: JohMBAir:cljs-template-master johannes$ lein figwheel Figwheel: Cutting some fruit, just a sec ... Exception in thread "main"

Re: [ClojureScript] Re: Figwheel and Java 9 compatibility

2018-05-03 Thread Alan Thompson
That looks good. Can you verify it matches what is in `project.clj`? Also, try `lein --version` or type `lein repl` to verify the same stuff is found. Alan On Wed, May 2, 2018 at 3:00 PM, Johannes wrote: > I am not sure if this is what you want to see: > >

Re: [ClojureScript] Re: Figwheel and Java 9 compatibility

2018-05-03 Thread Alan Thompson
And what happens if you type `lein figwheel` ? On Thu, May 3, 2018 at 1:42 PM, Johannes wrote: > > > Am Donnerstag, 3. Mai 2018 22:28:29 UTC+2 schrieb Alan Thompson: >> >> That looks good. Can you verify it matches what is in `project.clj`? >> > Yes, I think it does.

[ClojureScript] Re: cider clojurescript repl

2018-05-03 Thread Johannes
Thanks for the tip. Indeed, using the figwheel template, it works. I compared the project.clj files and I found a difference in dependencies: the figwheel template one uses [com.cemerick/piggieback "0.2.2"] and that works. I the cider manual [cider/piggieback "0.3.1"] is recommended. This does

Re: [ClojureScript] Re: Figwheel and Java 9 compatibility

2018-05-03 Thread Johannes
I'm sorry, but I get the same stack trace as before. And again: if I modify the :jvm-opts :jvm-opts ["-Xmx1g" "--add-modules" "java.xml.bind"] all works fine. Johannes Am Freitag, 4. Mai 2018 00:08:48 UTC+2 schrieb Alan Thompson: > > OK, I made a super-stripped down version to remove possible

[ClojureScript] Re: cider clojurescript repl

2018-05-03 Thread Sonny To
I'm not sure but try starting with a working figwheel template then compare it with yours to see whats missing On Tuesday, May 1, 2018 at 2:35:26 PM UTC+3, Johannes wrote: > > Hi, > > I am looking for a working configuration for Emacs/Cider/ClojureScript > Repl. Following the instructions given

Re: [ClojureScript] Re: Figwheel and Java 9 compatibility

2018-05-03 Thread Alan Thompson
I just tried it with Java 10. I get the same error as for Java 9, and it has the same fix: :jvm-opts ["-Xmx1g" "--add-modules" "java.xml.bind"]) This is with :dependencies [[org.clojure/clojure "1.9.0"] [org.clojure/clojurescript "1.10.238"] ] :plugins [[lein-cljsbuild