|
So one way this can be made to work is to break the java.xml module encapsulation using the -XaddExports option. The following addition to the FormatsTest command line allows the test to pass:
-XaddExports:java.xml/com.sun.org.apache.bcel.internal=ALL-UNNAMED -XaddExports:java.xml/com.sun.org.apache.bcel.internal.classfile=ALL-UNNAMED
However, if this feature is really desired, we should be adding the bcel classes that are needed to the weld core impl jar under an org.jboss.weld.util.reflection.bcel or some such package.
|