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
It is currently impossible to use LITIEngine with Java 13, using the modular system, as the jar file contains a misleading module-info in it, describing the java.xml.bind module:
Unfortunately this makes the module system threat the litiengine.jar file as the java.xml.bind module.
A solution would be to remove the module-info.class file from the jar artifact, to be able to use it as an automatic module, so it can be used like that:
modulecom.myproject {
requirelitiengine; // It currently throws
}
To add to it, this seems to have been introduced with some packaging library/plugin (hint: look into the build.gradle definition) since the module-info.class is a replica of the java.xml.bind modules' descriptor class file copied onto the path of this artifact.
It is currently impossible to use LITIEngine with Java 13, using the modular system, as the jar file contains a misleading
module-info
in it, describing thejava.xml.bind
module:Unfortunately this makes the module system threat the
litiengine.jar
file as thejava.xml.bind
module.A solution would be to remove the
module-info.class
file from the jar artifact, to be able to use it as an automatic module, so it can be used like that:(See StackOverflow post)
The text was updated successfully, but these errors were encountered: