Home | History | Annotate | Download | only in configuration
      1 # Eclipse runtime configuration file
      2 # This file contains a number of key/value pairs that are merged into the 
      3 # System properties on system startup.  The values control the way the 
      4 # runtime is structured and runs.
      5 
      6 # Note:  Only platform:/base/ and file: URLs are supported.  In general the 
      7 # URLs given may include a version number (e.g., .../location_1.2.3).  
      8 # If a version is not specified, the system binds
      9 # to the location which matches exactly or to the versioned location with the
     10 # latest version number.  If a version number is given then only exact matches
     11 # are considered.
     12 
     13 # The URL for the runtime entry point.  The default value is
     14 # platform:/base/plugins/org.eclipse.osgi 
     15 #osgi.framework = platform:/base/plugins/org.eclipse.osgi
     16 
     17 # The classpath for the framework found at the osgi.framework location.  This 
     18 # comma-separated list contains either URLs or simple element names.  Simple
     19 # names are assumed to be relative to the framework's install directory.  
     20 # Typically this value need not be set as it is initialized by the framework itself.
     21 # Version match searching is not done for URLs listed here.
     22 #osgi.frameworkClassPath =
     23 
     24 # The comma-separated list of locations to search for the splash screen file (splash.bmp).
     25 # For each list element a subdirectory structure based on the pattern nl/<locale> is searched.
     26 # The system binds to the first matching file.  There is no default value.
     27 osgi.splashPath = platform:/base/plugins/org.eclipse.platform
     28 
     29 # The location of the splash screen file.  If this value is set at system startup it is used 
     30 # in favour of the osgi.splashPath searching outlined above.  If the value is not set 
     31 # the searching is done and this key is bound to the result of the search.
     32 #osgi.splashLocation =
     33 
     34 # The comma-separated list of bundles which are automatically installed and optionally started
     35 # once the system is up and running.  Each entry if of the form
     36 #     <URL | simple bundle location>[@ [<startlevel>] [":start"]]
     37 # If the startlevel is omitted then the framework will use the default start level for the bundle.
     38 # If the "start" tag is added then the bundle will be marked as started after being installed.
     39 # Simple bundle locations are interepreted as relative to the framework's parent directory.
     40 # The startlevel indicates the OSGi start level at which the bundle should run.
     41 # If this value is not set, the system computes an appropriate default.
     42 #osgi.bundles=org.eclipse.equinox.common@2:start, org.eclipse.update.configurator@3:start, org.eclipse.core.runtime@start
     43 osgi.bundles=org.eclipse.equinox.common@2:start,org.eclipse.equinox.ds@2:start, org.eclipse.update.configurator@3:start,org.eclipse.core.runtime@start
     44 
     45 # The product to run.  A given Eclipse configuration may contain many products.
     46 # The product identified will supply the branding (window icons, title bar text) etc 
     47 # as well as define the default application to run.  
     48 eclipse.product=org.eclipse.sdk.ide
     49 
     50 # The application to run.  The value specified here is the id of the application extension
     51 # the runtime will find, instantiate and execute once the system is up.  Note that typically 
     52 # the identified eclipse.product defines the default application to run.
     53 #eclipse.application=
     54 
     55 # The default workspace location
     56 osgi.instance.area.default=@user.home/workspace
     57 
     58 # The build identifier
     59 eclipse.buildId=200905221710
     60 
     61 
     62 # End of file marker - must be here
     63 eof=eof