Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

RTP/Console

< RTP
Revision as of 05:55, 16 May 2012 by Unnamed Poltroon (Talk)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

RTP OSGi Console Extension

The core idea behind the console extension is to allow provisioning of any RTP-components to an Eclipse RTP based runtime. Below you can find a list with all available commands.


//Lists all available components
osgi>rt list
//Shows details of a specific component e.g. dependencies, available versions, size and so on. 
//The component name is the first entry.
osgi>rt show <name>
//Lists the available components which where searched. A phonetic search is done.
osgi>rt search <query>
//Installs a component. If no version provided the latest available version will be installed.
osgi> rt install <name> <version>  (E.g. rt install rap 1.5.0)
//Updates all installed componets to their latest version.
osgi>rt update-world
//Uninstalls a component. If no version provided the latest available version will be uninstalled.
osgi>rt remove <name> <version>  (E.g. rt remove rap 1.5.0)

Back to the top