This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-05-06
Channels
- # aws (11)
- # beginners (51)
- # cider (61)
- # cljsrn (37)
- # clojure (51)
- # clojure-spec (5)
- # clojure-uk (6)
- # clojurescript (35)
- # core-async (29)
- # cursive (3)
- # datomic (4)
- # defnpodcast (3)
- # editors (10)
- # emacs (3)
- # fulcro (2)
- # lein-figwheel (9)
- # leiningen (3)
- # mount (3)
- # off-topic (59)
- # parinfer (6)
- # portkey (4)
- # re-frame (6)
- # shadow-cljs (136)
- # spacemacs (1)
- # specter (1)
- # tools-deps (10)
doing lein new figwheel myexample
and then trying to run lein figwheel
I get the error “java.lang.ClassNotFoundException: javax.xml.bind.DatatypeConverter”
@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
Yeah, figured the whole JDK version mess, switched to JDK8, and now the figwheel template works fine.
@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.)