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

2018-05-08 Thread Johannes
dito Johannes Am Montag, 7. Mai 2018 21:30:17 UTC+2 schrieb Alan Thompson: > > I have tested that it works on Java 10 now using Figwheel 0.5.16.My > project.clj looks so plain now without the tricky > > #=(eval ...) > > > :( > > On Sun, May 6, 2018 at 4:55 PM, Daniel Compton

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

2018-05-07 Thread Alan Thompson
I have tested that it works on Java 10 now using Figwheel 0.5.16.My project.clj looks so plain now without the tricky #=(eval ...) :( On Sun, May 6, 2018 at 4:55 PM, Daniel Compton < daniel.compton.li...@gmail.com> wrote: > Working from

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

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

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
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.

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-02 Thread Johannes
I am not sure if this is what you want to see: JohMBAir:hello-world johannes$ clj --main cljs.main --compile hello-world.core --repl ClojureScript 1.10.238 cljs.user=> ^D JohMBAir:hello-world johannes$ clj Clojure 1.9.0 user=> ^D JohMBAir:hello-world johannes$ java --version java 9.0.1

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

2018-05-02 Thread Alan Thompson
Can you verify versions for Java, Clojure, & ClojureScript? On Mon, Apr 30, 2018 at 6:34 AM, Johannes wrote: > Hm, I downloaded your profile.clj, and with > > lein figwheel > > I get the known error: > > Figwheel: Cutting some fruit, just a sec ... > > Retrieving

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

2018-05-02 Thread Alan Thompson
Can you verify versions for Java, Clojure, & ClojureScript? Alan On Mon, Apr 30, 2018 at 6:34 AM, Johannes wrote: > Hm, I downloaded your profile.clj, and with > > lein figwheel > > I get the known error: > > Figwheel: Cutting some fruit, just a sec ... > > Retrieving

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

2018-04-30 Thread Johannes
Hm, I downloaded your profile.clj, and with lein figwheel I get the known error: Figwheel: Cutting some fruit, just a sec ... Retrieving tupelo/tupelo/0.9.76/tupelo-0.9.76.pom from clojars Retrieving clojure-csv/clojure-csv/2.0.2/clojure-csv-2.0.2.pom from clojars Retrieving

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

2018-04-26 Thread Johannes
I've learned from several discussions (https://github.com/bhauman/lein-figwheel/issues/612) that the problem was ClojureScript 1.9 and that one should use the tag :jvm-opts ["--add-modules" "java.xml.bind"] until a new ClojureScript version is out. Am Donnerstag, 26. April 2018 01:04:37 UTC+2

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

2018-04-23 Thread Johannes
Today, I tried to use figwheel 0.5.15 together with ClojureScript 1.10.238. If I omit :jvm-opts ["--add-modules" "java.xml.bind"] I get the "old" error message: Exception in thread "main" java.lang.ExceptionInInitializerError at clojure.main.(main.java:20) Caused by:

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

2018-03-14 Thread gvim
So it's a Clojurescript issue, not Figwheel? gvim On 14/03/2018 06:43, Aleš Roubíček wrote: Java 9 compatibility will come with ClojureScript 1.10. It will be released in few weeks timeframe. On Tuesday, March 13, 2018 at 1:58:12 PM UTC+1, g vim wrote: A few months ago I tried