<div dir="ltr"><div>Hey guys,<br><br></div><div>We&#39;ve hit some maven plug-ins that aren&#39;t supported yet by m2e that we use in the Fuse world... if I was to log a feature request for some of these, should I put it in Eclipse? or in JBIDE?<br><br></div><div>Or a better question, what is the policy for additions to m2e? How do we petition to have plug-ins added or contribute back? These may not be broadly applicable to other projects, so less apt to be pushed upstream.<br><br></div><div>Thanks in advance.<br><br></div><div>--Fitz<br><br></div><div>p.s. For a bit more detail about what we&#39;re looking for... <br><br>Importing the camel-cxf example (<a href="https://github.com/jboss-fuse/quickstarts/tree/master/cxf/rest">https://github.com/jboss-fuse/quickstarts/tree/master/cxf/rest</a>) we hit three issues.<br></div><div><br></div><div>We have an org.apache.cxf plug-ins that isn&#39;t supported yet...<br><br>      &lt;plugin&gt;<br>        &lt;groupId&gt;org.apache.cxf&lt;/groupId&gt;<br>        &lt;artifactId&gt;cxf-java2wadl-plugin&lt;/artifactId&gt;<br>        &lt;version&gt;3.0.4.redhat-621084&lt;/version&gt;<br>        &lt;executions&gt;<br>          &lt;execution&gt;<br>            &lt;id&gt;parsejavadoc&lt;/id&gt;<br>            &lt;phase&gt;generate-sources&lt;/phase&gt;<br>            &lt;goals&gt;<br>              &lt;goal&gt;parsejavadoc&lt;/goal&gt;<br>            &lt;/goals&gt;<br>          &lt;/execution&gt;<br>          &lt;execution&gt;<br>            &lt;id&gt;process-classes&lt;/id&gt;<br>            &lt;phase&gt;process-classes&lt;/phase&gt;<br>            &lt;goals&gt;<br>              &lt;goal&gt;java2wadl&lt;/goal&gt;<br>            &lt;/goals&gt;<br>            &lt;configuration&gt;<br>              &lt;classResourceNames&gt;<br>                &lt;classResourceName&gt;io.fabric8.quickstarts.rest.CustomerService&lt;/classResourceName&gt;<br>              &lt;/classResourceNames&gt;<br>              &lt;docProvider&gt;org.apache.cxf.maven_plugin.javatowadl.ResourceMapJavaDocProvider&lt;/docProvider&gt;<br>              &lt;attachWadl&gt;false&lt;/attachWadl&gt;<br>            &lt;/configuration&gt;<br>          &lt;/execution&gt;<br>        &lt;/executions&gt;<br>      &lt;/plugin&gt;<br><br></div><div>And a fabric8 plug-in that isn&#39;t supported yet.<br><br>      &lt;plugin&gt;<br>        &lt;groupId&gt;io.fabric8&lt;/groupId&gt;<br>        &lt;artifactId&gt;fabric-cxf-plugins&lt;/artifactId&gt;<br>        &lt;version&gt;1.2.0.redhat-621084&lt;/version&gt;<br>        &lt;executions&gt;<br>          &lt;execution&gt;<br>            &lt;id&gt;process-classes&lt;/id&gt;<br>            &lt;phase&gt;process-classes&lt;/phase&gt;<br>            &lt;goals&gt;<br>              &lt;goal&gt;java2swagger&lt;/goal&gt;<br>            &lt;/goals&gt;<br>            &lt;configuration&gt;<br>              &lt;classResourceNames&gt;<br>                &lt;classResourceName&gt;io.fabric8.quickstarts.rest.CustomerService&lt;/classResourceName&gt;<br>              &lt;/classResourceNames&gt;<br>              &lt;attachSwagger&gt;false&lt;/attachSwagger&gt;<br>            &lt;/configuration&gt;<br>          &lt;/execution&gt;<br>        &lt;/executions&gt;<br>      &lt;/plugin&gt;<br><br></div></div>