Steps to Reproduce: |
I had to augment the org.wildfly.swarm.container.runtime.ServerBootstrapImpl to enable development mode with export of the data using the org.jboss.weld.development and org.jboss.weld.probe.exportDataAfterDeployment properties:
{code:java} Weld weld = new Weld(WELD_INSTANCE_ID) .property("org.jboss.weld.development", true) .property("org.jboss.weld.probe.exportDataAfterDeployment", "/tmp/"); weld.setClassLoader(module.getClassLoader()); {code}
Then running a microprofile-jwt fraction unit test produces the NPE. |