Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [m2e-dev] <requires> in feature.xml

I am not sure what your question is, to be honest.

This element defines what plugins are required by your feature. During
installation, p2 will make sure plugins listed in this section are also
installed [1].


[1] http://help.eclipse.org/helios/topic/org.eclipse.platform.doc.isv/reference/misc/feature_manifest.html

--
Regards,
Igor

On 11-05-15 09:33 AM, Benson Margulies wrote:
In 0.12-land, I had...

    <requires>
       <import plugin="org.eclipse.core.runtime" version="3.4.0"
match="greaterOrEqual"/>
       <import plugin="org.maven.ide.eclipse" version="0.11.0"
match="compatible"/>
       <import plugin="org.maven.ide.eclipse.maven_embedder"
version="0.11.0" match="compatible"/>
       <import plugin="org.eclipse.core.resources" version="3.4.0"
match="greaterOrEqual"/>
       <import plugin="net.sf.eclipsecs.core" version="5.2.0"
match="compatible"/>
       <import plugin="net.sf.eclipsecs.checkstyle" version="5.2.0"
match="compatible"/>
       <import plugin="org.eclipse.ui.console" version="3.4.0"
match="greaterOrEqual"/>
    </requires>

in my feature.xml. There is nothing like this in the feature.xmls for
the extras currently. Should I just delete it, or update the M2E
component names and versions?


Back to the top