I'm trying to convert my CXF/JAX-RS app from Ant to Maven. My Ant build uses a third-party xjc extension, which I've built locally. It works fine from the Ant build.
When I first ran the plugin with my extensionArgs for the extension, it failed, saying "unrecognized parameter". It occurred to me that it won't have the extension in the classpath, so that's probably why it failed. I guess I'll have to build the extension in a Maven project, but how do I specify dependencies in the cxf-xjc-plugin so it will know about that extension?
