MANIFEST.MF and feature.xml versioning rules
OSGi Plugin Version Ranges
Dependencies on bundles and packages have an associated version range which is specified using an interval notation: a square bracket “[” or “]” denotes an inclusive end of the range and a round bracket “(” or “)” denotes an exclusive end of the range. Where one end of the range is to be included and the other excluded, it is permitted to pair a round bracket with a square bracket. The examples below make this clear.
If a single version number is used where a version range is required this does not indicate a single version, but the range starting from that version and including all higher versions.
There are four common cases:
- A “strict” version range, such as [1.2.3,1.2.3], which denotes that version and only that version.
- A “half-open” range, such as [1.2.3,2.0.0), which has an inclusive lower limit and an exclusive upper limit, denoting version 1.2.3 and any version after this, up to, but not including, version 2.0.0.
- An “unbounded” version range, such as 1.2.3, which denotes version 1.2.3 and all later versions.
- No version range, which denotes any version will be acceptable. NOT RECOMMENDED.
The complete text of the above snippet can be seen here (or here as PDF).
Example:
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)", org.eclipse.core.resources;bundle-version="[3.4.0,4.0.0)", org.eclipse.ui.ide;bundle-version="[3.4.0,4.0.0)", org.eclipse.ui.navigator;bundle-version="3.5.100", com.ibm.icu
See also:
- plugin manifest (plugin.xml)
- osgi bundle manifest (MANIFEST.MF)
In terms of feature manifest (feature.xml) rules, help.eclipse.org has pretty good documentation, but the most important thing to remember – and what I often have to look up – is how to state the matching rules for required upstream features & plugins. Experience says it’s always better to state things explicitly so there’s no downstream guesswork needed and anyone reading your manifest knows EXACTLY what version(s) are required for or compatible with your feature. Plus, while YOU might be using PDE UI to build, someone else might be using Tycho and Maven, and every tool can interpret missing metadata their own way.
When in doubt, spell it out.
Valid values and processing are as follows:
- if version attribute is not specified, the match attribute (if specified) is ignored.
- perfect – dependent plug-in version must match exactly the specified version. If “patch” is “true”, “perfect” is assumed and other values cannot be set. [1.2.3,1.2.3]
- equivalent – dependent plug-in version must be at least at the version specified, or at a higher service level (major and minor version levels must equal the specified version). [1.2.3,1.3)
- compatible – dependent plug-in version must be at least at the version specified, or at a higher service level or minor level (major version level must equal the specified version). [1.2.3,2.0)
- greaterOrEqual – dependent plug-in version must be at least at the version specified, or at a higher service, minor or major level. 1.2.3
The complete text of the above snippet can be seen here.
Example:
<requires> <import feature="org.eclipse.m2e.feature" version="1.0.0" match="compatible"/> <import feature="org.maven.ide.eclipse.wtp.feature" version="0.13.0" match="greaterOrEqual"/> <plugin id="ch.qos.logback.classic" version="0.9.27.v20110224-1110" match="greaterOrEqual"/> <plugin id="ch.qos.logback.core" version="0.9.27.v20110224-1110" match="greaterOrEqual"/> <plugin id="ch.qos.logback.slf4j" version="0.9.27.v20110224-1110" match="greaterOrEqual"/> <plugin id="org.slf4j.api" version="1.6.1.v20100831-0715" match="compatible"/> <plugin id="com.ning.async-http-client" version="1.6.3.201106061504" match="equivalent"/> <plugin id="org.jboss.netty" version="3.2.4.Final-201106061504" match="perfect"/> <plugin id="org.hamcrest.core" version="1.1.0.v20090501071000" match="equivalent"/> </requires>
Reference: MANIFEST.MF and feature.xml versioning rules from our JCG partner Nick Boldt at the DivByZero blog.