LibraryPrintFeedback

Installation Guide

Version 2.0

July 2011
Legal Notices

Updated: 15 Nov 2011

Table of Contents

1. Prerequisites
2. Supported Platforms
3. Installing Fuse IDE
4. Licensing Fuse IDE
5. Upgrade Fuse IDE
6. Removing Fuse IDE
A. Configuring Fuse IDE to Use Maven Proxies

List of Figures

3.1. Fuse IDE installation details
3.2. Fuse IDE installation details
5.1. Software update dialog

List of Tables

A.1. Maven proxy configuration elements

List of Examples

A.1. Minimum Maven configuration file
A.2. Maven configuration for a proxy

Fuse IDE works with the following versions of Eclipse:

[Important]Forcing Eclipse to use the JDK

By default Eclipse uses your system's PATH setting to determine which Java VM to use. If you have multiple Java VM's installed on your system, this can result in Eclipse choosing an unsupported VM.

We recommend explicitly configuring your Eclipse installation to use the VM from a Java 6 JDK. You configure the VM used by Eclipse by adding the following two lines to your eclipse.ini file:

-vm 
JDKInstallDir/bin/javaw.exe

Fuse IDE is supported on the following operating systems:

  • Windows XP SP3

  • OS X 10.5 or greater

  • Linux

    [Warning]Warning

    The icons on the context menus do not appear on Ubuntu 9.10. To resolve this issue run:

    gconftool-2 --type boolean --set /desktop/gnome/interface/menus_have_icons true

To manually download your license and register Fuse IDE;

  1. In a Web browser, open http://fusesource.com/account.

  2. Enter your username and password.

  3. Click Login.

    You will be taken to your FuseSource account page.

  4. Scroll down to the Subscriber section of the page.

    You should see a link entitled Download Subscriber License.

  5. Click the Download Subscriber License link.

    A file called license.key is downloaded to you computer. This file contains the license needed to register Fuse IDE.

  6. Start Eclipse.

  7. Select Window|Preferences from the Eclipse menu.

    The Eclipse Preferences editor opens.

  8. Select Fuse IDE|Subscription.

    The Fuse IDE Subscription preference panel appears.

  9. Click Install License File.

    A file explorer will open.

  10. Locate and select the downloaded license.key file.

  11. Click Open.

A dialog window telling you the license has been installed appears and the Expiration Date field on the Fuse IDE Subscription preference panel will display your the expiration date of your license.

To configure Fuse IDE to use a Maven proxy:

  1. Add the proxy settings to your Maven configuration file.

  2. Configure Fuse IDE's Maven tooling to use the configuration file containing the proxy settings.

Maven stores user configuration information in an XML file. By default, Maven and the Fuse IDE Maven tooling look for the file in the user's .m2/settings.xml file. The Fuse IDE Maven tooling can be configured to use a different Maven configuration file if needed.

Because this is a user specific configuration file, this file is not created when Maven or the Fuse IDE Maven tooling is installed. If it does not exist, you will need to create it. Example A.1 shows the minimum required entries for a Maven configuration file.


To configure Maven to use a proxy you add a proxies element to the settings file. The proxies element is a container for one or more proxy elements that configure individual proxy instances.

The proxy element uses the children described in Table A.1 to provide the information for a proxy.


Example A.2 shows a sample proxy configuration.


Complete documentation for the Maven configuration file can be found at http://maven.apache.org/guides/mini/guide-configuring-maven.html.