You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The java.xml.bind package is deprecated in Java 9 and not included in the default classpath. Code which tries to use classes under java.xml.bind.* will throw ClassNotFoundException. For example, from clavatar:
The
java.xml.bind
package is deprecated in Java 9 and not included in the default classpath. Code which tries to use classes underjava.xml.bind.*
will throw ClassNotFoundException. For example, from clavatar:The fix, as described in How to upgrade your Clojure projects to use Java 9, is to add the JVM option
--add-modules "java.xml.bind"
. In a Leiningen project.clj file, this is:Libraries affected by this:
The text was updated successfully, but these errors were encountered: