Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[wtp-dev] Facets


Konstantin,

I have a build based on a 200603302119-200603302119 version of WTP.  In my build my facets started giving me messages like...

The ">", ">=", "<", and "<=" notation in version expressions has been deprecated. It used in plugin com.ibm.etools.myplugin. Note that the angle brackets are represented via "&lt;" and "&gt;" in the plugin.xml files. The functionality has been replaced with range notation. For instance "[X-Y)" means all versions greater or equals to X and less than Y. Open ranges such as "(X" or "Y]" are also allowed.

However I changed my facet from...

    <constraint>
        <requires facet="jst.web" version="&gt;=2.3"/>
    </constraint>

To...

    <constraint>
        <requires facet="jst.web" version="[2.3, 2.4]"/>
    </constraint>

and it no longer indicated that a 2.2 web project was invalid.  Has this been addressed?  If so in what build?

Thanks,

Kevin Bauer

Back to the top