doing lein new figwheel myexample
and then trying to run lein figwheel
I get the error “java.lang.ClassNotFoundException: javax.xml.bind.DatatypeConverter”
I am using java 10.0.1
@skeuomorf If you look at the stack trace, one of the libs in use hasn't been updated to deal with the change in Java's classpath behavior. You can use Java 1.8 or, or you can use the Java option --add-modules java.xml.bind
If it is ClojureScript that is the problem you can update to 1.10.238
Yeah, figured the whole JDK version mess, switched to JDK8, and now the figwheel template works fine.
BTW I was using clojurescript 1.10.238, errored with JDK10, worked fine with JDK8
@skeuomorf Right, even with ClojureScript 1.10.238 and JDK10, there is an http-kit
dep that needs to be updated. (That's recorded in the ticket.)
I see