omcljs / om

ClojureScript interface to Facebook's React
6.65k stars 364 forks source link

Wiki Quick Start project.clj doesn't work with java 10 #903

Open jameslaneconkling opened 6 years ago

jameslaneconkling commented 6 years ago

Throws exception ava.lang.ClassNotFoundException: javax.xml.bind.DatatypeConverter, compiling:(org/httpkit/server.clj:1:1).

Updating dependencies to the following successfully runs on java 10 and 8.

(defproject om-tutorial "0.1.0-SNAPSHOT"
  :description "My first Om program!"
  :dependencies [[org.clojure/clojure "1.8.0"]
                 [org.clojure/clojurescript "1.10.238"]
                 [org.omcljs/om "1.0.0-beta3"]
                 [figwheel-sidecar "0.5.16" :scope "test"]])

I can update the wiki if desirable.

tirkarthi commented 6 years ago

This is due to http-kit not compatible with Java 9. The latest release 2.3.0 fixes the issue I assume one of the dependencies is not updated which I assume is figwheel-sidecar.

tirkarthi commented 6 years ago

Seems this was reported. Please refer : https://github.com/omcljs/om/issues/902