in jax-rs.whiteboard/src/main/java/org/apache/aries/jax/rs/whiteboard/activator/CxfJaxrsBundleActivator.java [81:96]
static {
Class<?> xmlLocation;
try {
xmlLocation = com.sun.xml.bind.annotation.XmlLocation.class;
} catch (NoClassDefFoundError e) {
// Swallow it
xmlLocation = null;
}
Class<?> wstxInputFactory = com.ctc.wstx.stax.WstxInputFactory.class;
INTERNALLY_REQUIRED_CLASSES = xmlLocation == null ? Collections.singletonList(wstxInputFactory) :
Arrays.asList(wstxInputFactory, xmlLocation);
RuntimeDelegate.setInstance(new RuntimeDelegateImpl());
}