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

Eclipse Oomph FAQ

Revision as of 01:49, 27 April 2018 by Ed.merks.gmail.com (Talk | contribs)

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

Oomph Project Logo.png Powered by Oomph

How can I change values I've entered in the prompt dialog (e.g., my "git.user.id") once that dialog is gone?

In your installed IDE there should be button with a blue person in the main toolbar. Please click it to open your setup preferences. All prompted values are stored as VariableTasks in there and you're able to change them. (see Bug 428268)

How can I use a SSH private key with a custom file name (different from "id_dsa,id_rsa")?

In your setup preferences (see above) you have to add an "Eclipse Preferences" task to set the custom file name. The key of this node should be "/instance/org.eclipse.jsch.core/PRIVATEKEY", its value should be the name (not the path) of your private key file (e.g. "eclipse.ppk").

How can I use a custom SSH configuration directory?

In your setup preferences (see above) you have to add an "Eclipse Preferences" task to set the custom file name. The key of this node should be "/bundle_defaults/org.eclipse.jsch.core/SSH2HOME", its value should be the fully qualified path to your SSH configuration directory.

How can I add my own setup files?

In order to get your own setup file included, simply copy the respective *.setup file next to the Setup executable. In the case of OS X one has to manually copy this file into "Setup.app/Contents/Mac OS".

Oomph seems to update my IDE. Should I still use standard "Check For Updates..."?

You can. But consider these differences between Oomph and standard p2:

  1. p2 does not record a version range for the installed units so it will update to the hihgest available version, which might not be what you want. The "Diagram Editor for Ecore" is an example where the 2.x version is not able to load diagrams created with the 1.x version. Oomph in contrast uses a p2 director that is modified to understand and respect the version ranges as specified in the setup models.
  2. p2 uses the set of currently enabled p2 repositories for the update, which is often not immediately obvious and can change by just trying out new URLs in the "Install New Software" dialog. Oomph in contrast uses exactly the set of repositories that's specified in the setup models.
  3. p2 will always ask you to accept licenses, whether you've already accepted them before or not. Oomph in contrast can remember the accepted licenses and won't bother you again. As this happens based on license UUIDs this approach is even safer because it prevents you from accidentally accept licenses with content that's just very similar but different (unintentionally or on purpose) from ones you've already accepted before.

How can I update the installer to the newest nightly build?

Edit the eclipse-inst.ini file in the installer's root folder. Add the following two options (or change the existing ones):

 -Doomph.installer.update.url=http://download.eclipse.org/oomph/products/latest/repository
 -Doomph.update.url=http://download.eclipse.org/oomph/updates/latest

How can I make Oomph install the latest Eclipse platform milestone?

By default, the org.eclipse.products.setup will only have simulatanous release URLs such as http://download.eclipse.org/releases/neon, which will not have the latest code. If you would like it to install the latest Eclipse platform milestone builds, then Open User (user.setup) and add a P2 Director with a New Repository such as http://download.eclipse.org/eclipse/updates/4.6milestones.

Back to the top