Different versions of same module in custom update center
"marcohu" <[email protected]>
| Newsgroups | gmane.comp.java.netbeans.modules.openide.devel |
|---|---|
| Message-ID | <[email protected]> |
Howdy,
it is possible to provide different versions of the same module through a custom update center?
My catalog.xml looks like this:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE autoupdate_catalog PUBLIC "-//NetBeans//DTD Autoupdate Catalog 2.0//EN" "autoupdate-catalog-2_0.dtd">
<module_updates timestamp="11/41/18/02/08/2016">
<module codenamebase="package" distribution="package-1.0.3.nbm" ...>
<manifest OpenIDE-Module="name" OpenIDE-Module-Specification-Version="1.0.3" ... />
</module>
<module codenamebase="package" distribution="package-1.0.2.nbm" ...>
<manifest OpenIDE-Module="name" OpenIDE-Module-Specification-Version="1.0.2" ... />
</module>
<module codenamebase="package" distribution="package-1.0.1.nbm" ...>
<manifest OpenIDE-Module="name" OpenIDE-Module-Specification-Version="1.0.1" ... />
</module>
...
</module_updates_
When added to NetBeans, the update manager only shows the most recent version (1.0.3).
Is there some way to have all available versions displayed to the user instead? Thanks.
Cheers,
Marco