Re: [ANN] Clojure 1.9.0-beta4

2017-11-03 Thread Toby Crawley
This is indeed related to CLJ-2066 - the issue is the object that data.xml is trying to reflect on is a SaxParserImpl, which comes from a non-exported module in Java 9. The object implements SaxParser, and parse() is a public method there, but Reflector is calling getClass() on the object and tryin

Re: [ANN] Clojure 1.9.0-beta4

2017-11-03 Thread Alan Thompson
Just upgraded from 0.0.8 to [org.clojure/data.x ​​ ml "0.2.0-alpha3"] ​ and am still getting the same error. The offending statement is (clojure.data.xml/parse) where the BIS is the result of (clojure.java.io/input-stream (clojure.java.io/resource )) ​ ​Alan On Fri, Nov 3, 2017 a

Re: [ANN] Clojure 1.9.0-beta4

2017-11-03 Thread Alex Miller
I believe this is https://dev.clojure.org/jira/browse/CLJ-2066 which can most easily be fixed by avoiding reflection. If this is happening from data.xml, newer versions of that lib have fixed it I believe. On Fri, Nov 3, 2017 at 3:36 PM, Alan Thompson wrote: > OK, I upgraded lein to 2.8.1, and i

Re: [ANN] Clojure 1.9.0-beta4

2017-11-03 Thread Alan Thompson
OK, I upgraded lein to 2.8.1, and it removed one of the error messages. I still have one remaining: WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by clojure.lang.Reflector (file:/home/alan/.m2/repository/org/clojure/clojure/1.9.0-beta4/clojure-1.

Re: [ANN] Clojure 1.9.0-beta4

2017-11-02 Thread Peter Hull
On Thursday, 2 November 2017 19:46:35 UTC, Alex Miller wrote: > > I think this is an issue with Leiningen with Java 1.9 (re things in > dynapath and the changes in classloader details in Java 1.9), and not > Clojure itself. > > Yes this was leiningen issue #2331 now fixed: https://github.com/tec

Re: [ANN] Clojure 1.9.0-beta4

2017-11-02 Thread Alex Miller
I think this is an issue with Leiningen with Java 1.9 (re things in dynapath and the changes in classloader details in Java 1.9), and not Clojure itself. On Thu, Nov 2, 2017 at 2:31 PM, Andy Fingerhut wrote: > Alan, I get similar messages when starting 'lein repl' with this > combination of vers

Re: [ANN] Clojure 1.9.0-beta4

2017-11-02 Thread Andy Fingerhut
gt; An Architect's View -- http://corfield.org/ >>> >>> "If you're not annoying somebody, you're not really alive." >>> -- Margaret Atwood >>> >>> >>> -- >>> *From:* clo...@googlegroups.co

Re: [ANN] Clojure 1.9.0-beta4

2017-11-02 Thread Alan Thompson
AN -- (904) 302-SEAN >> An Architect's View -- http://corfield.org/ >> >> "If you're not annoying somebody, you're not really alive." >> -- Margaret Atwood >> >> >> -- >> *From:* clo...@googlegr

Re: [ANN] Clojure 1.9.0-beta4

2017-11-01 Thread Didier
's View -- http://corfield.org/ > > "If you're not annoying somebody, you're not really alive." > -- Margaret Atwood > > > -- > *From:* clo...@googlegroups.com > on behalf of Alex Miller > > *Sent:* Tuesday, Oc

RE: [ANN] Clojure 1.9.0-beta4

2017-11-01 Thread Sean Corfield
on behalf of Alex Miller Sent: Tuesday, October 31, 2017 7:24:04 AM To: Clojure Subject: [ANN] Clojure 1.9.0-beta4 Clojure 1.9.0-beta4 is now available. Try it via - Download: https://repo1.maven.org/maven2/org/clojure/clojure/1.9.0-beta4 - Leiningen: [org.clojure/clojure "1.9.0-bet

[ANN] Clojure 1.9.0-beta4

2017-10-31 Thread Alex Miller
Clojure 1.9.0-beta4 is now available. Try it via - Download: https://repo1.maven.org/maven2/org/clojure/clojure/1.9.0-beta4 - Leiningen: [org.clojure/clojure "1.9.0-beta4"] 1.9.0-beta4 includes the following changes since 1.9.0-beta3: - CLJ-2259 -