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 "Eclipse Installer"

Line 1: Line 1:
{{tip|New Version| Oomph started in October 2013 as part of the CDO Releng tools. Now that the [https://projects.eclipse.org/proposals/oomph Oomph proposal] has been accepted it is an independent project under Tools. <br>
+
== What is Oomph? ==
 +
 
 +
Eclipse Oomph is an installer and updater for Eclipse development environments. See what [http://www.thefreedictionary.com/oomph The Free Dictionary] says.
  
[[Image:NewInstaller.png]]
+
[[Image:OomphInstaller.png]]
  
 
The new installers are now available:
 
The new installers are now available:
Line 11: Line 13:
  
 
<p>You can also install Oomph into an existing IDE via the [http://download.eclipse.org/oomph/updates update site] or the [http://download.eclipse.org/oomph/updates/org.eclipse.oomph.site.zip site archive].</p>
 
<p>You can also install Oomph into an existing IDE via the [http://download.eclipse.org/oomph/updates update site] or the [http://download.eclipse.org/oomph/updates/org.eclipse.oomph.site.zip site archive].</p>
<p>The remainder of this wiki page will soon be adjusted to reflect the new version. Meanwhile this [http://www.eclipse.org/community/eclipse_newsletter/2014/may/article3.php article] tells you more about the new Oomph.</p>}}
 
 
== What is Oomph? ==
 
 
Eclipse Oomph is an installer and updater for Eclipse development environments. See what [http://www.thefreedictionary.com/oomph The Free Dictionary] says.
 
  
 
== Features ==
 
== Features ==
Line 33: Line 30:
  
 
Please read [[Eclipse Oomph Authoring]].
 
Please read [[Eclipse Oomph Authoring]].
 +
 +
== Frequently Asked Questions ==
 +
 +
Please read [[Eclipse Oomph FAQ]].
  
 
== Getting in Touch ==
 
== Getting in Touch ==
Line 57: Line 58:
 
== See Also ==
 
== See Also ==
  
 +
* [http://www.eclipse.org/community/eclipse_newsletter/2014/may/article3.php Eclipse has Oomph] in Eclipse newsletter 2014/5.
 
* [http://www.winklerweb.net/index.php/blog/12-eclipse/20-creating-custom-installations-with-oomph Creating custom installations with Oomph] a blog post by Stefan Winkler.
 
* [http://www.winklerweb.net/index.php/blog/12-eclipse/20-creating-custom-installations-with-oomph Creating custom installations with Oomph] a blog post by Stefan Winkler.
 
* [http://ed-merks.blogspot.fr/2014/02/shoes-for-shoemaker.html Shoes for the Shoemaker] a blog post by Ed Merks about the setup tool.
 
* [http://ed-merks.blogspot.fr/2014/02/shoes-for-shoemaker.html Shoes for the Shoemaker] a blog post by Ed Merks about the setup tool.

Revision as of 11:27, 7 November 2014

What is Oomph?

Eclipse Oomph is an installer and updater for Eclipse development environments. See what The Free Dictionary says.

OomphInstaller.png

The new installers are now available:

You can also install Oomph into an existing IDE via the update site or the site archive.

Features

Non-exhaustive list of features:

  • Provisioning correct set of plugins in the Eclipse IDE.
  • Binding Git repos (incl. personal Gerrit push URL).
  • Checking out projects.
  • Setting workspace preferences.
  • Configuring dynamic working sets.
  • Keeping project preferences files in sync.

The configuration is model driven, with the possibility to customize a lot for each project, each branch, each user…

Authoring Setup Models

Please read Eclipse Oomph Authoring.

Frequently Asked Questions

Please read Eclipse Oomph FAQ.

Getting in Touch

First browse the FAQ section below.

As a user you should post your questions and comments to the public forum:

You can also monitor the developer mailing list or discuss development topics:

If you encounter trouble or miss a feature please:

See Also

Frequently Asked Questions

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.

Back to the top