Search code examples
eclipseeclipse-rcprcp

Eclipse RCP: How to set launch parameters?


You need to set the path to the directory "splash_v1" in plugin "com.project.console". Example without directory "splash_v1":

osgi.splashPath=platform:/base/plugins/com.project.console

Solution

  • If you are asking how to define launch parameters when starting up your RCP application you have two options.

    1. Define them in the Run Configuration (configurable via Project > Run Configurations)
    2. Define them at startup by passing them in with the executable from the console (e.g., ./myrcp -application myrcp).

    For an overview of runtime options, cf. The Eclipse runtime options.