> I just realized LoggingFeature depends on javax.xml.ws.WebServiceFeature > > Is it possible to drop that dependency in the target to run on java ~11 > without javax.xml.ws dependencies?
Certainly not without breaking compatibility and everyone using any of the CXF provided features. AbstractFeature (in core) subclasses WebServiceFeature so that any of the features can be added directly to any of the jax-ws endpoints/clients directly and everyone using them does so. Thus, removing that as a parent would completely break everyone. -- Daniel Kulp [email protected] <mailto:[email protected]> - http://dankulp.com/blog <http://dankulp.com/blog> Talend Community Coder - http://talend.com <http://coders.talend.com/>
