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 ...)
 
 
Line 9: Line 9:
 
  //Shows details of a specific component e.g. dependencies, available versions, size and so on.  
 
  //Shows details of a specific component e.g. dependencies, available versions, size and so on.  
 
  //The component name is the first entry.
 
  //The component name is the first entry.
  osgi>rtp show <name>
+
  osgi>rt show <name>
  
 
  //Lists the available components which where searched. A phonetic search is done.
 
  //Lists the available components which where searched. A phonetic search is done.
  osgi>rtp search <query>
+
  osgi>rt search <query>
  
 
  //Installs a component. If no version provided the latest available version will be installed.
 
  //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)
+
  osgi> rt install <name> <version>  (E.g. rt install rap 1.5.0)
  
 
  //Updates all installed componets to their latest version.
 
  //Updates all installed componets to their latest version.

Latest revision as of 05:55, 16 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>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