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
:jvm-opts in proj.clj contains an extra = in --add-modules=java.xml.bind that results in the following error when run lein prod-build.
java.lang.module.FindException: Module java.xml.bind not found
Context
Mac OSX
java version 11.0.2
re-natal version 0.11.1
More
This extra :jvm-opts passed here needs to be fixed to :jvm-opts ["-XX:+IgnoreUnrecognizedVMOptions" "--add-modules java.xml.bind"]
without = to work. Otherwise, lein prod-build would raise
Compiling ClojureScript...
Error occurred during initialization of boot layer
java.lang.module.FindException: Module java.xml.bind not found
Summary
:jvm-opts
inproj.clj
contains an extra=
in--add-modules=java.xml.bind
that results in the following error when runlein prod-build
.Context
Mac OSX
java version 11.0.2
re-natal version 0.11.1
More
This extra
:jvm-opts
passed here needs to be fixed to:jvm-opts ["-XX:+IgnoreUnrecognizedVMOptions" "--add-modules java.xml.bind"]
without
=
to work. Otherwise,lein prod-build
would raisere-natal/resources/project.clj
Line 18 in 77a672c
See also: #198
The text was updated successfully, but these errors were encountered: