I\'m trying to get the cxf-codegen-plugin to generate sources from my wsdl file. When calling wsdl2java manual the desired classes are generated but when using
That looks very much like the way I (successfully) configure that plugin in one of my projects; I would expect that to work. (I believe you can omit the
; the default setting for that is the one you've stated.)
The only thing I can think of would be if you had put that plugin configuration in either a non-active Maven profile or (more likely) in the
section instead of the straight
section; the pluginManagement section overrides aspects of the configuration of plugins, but doesn't actually enable them for use. (It does however affect explicit usage; I know you don't want to do that.)