Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "RTP/Console"

< RTP
(New page: =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 ...)
(No difference)

Revision as of 16:00, 15 May 2012

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>rtp show <name>
//Lists the available components which where searched. A phonetic search is done.
osgi>rtp search <query>
//Installs a component. If no version provided the latest available version will be installed.
osgi> rtp 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