uDig

«  Making a Branding Plugin   ::   Contents   ::   Using UDIGApplication  »

Making a Product and Executable

A Product for your Application

A product is a main entry point into your uDig (or Eclipse) based application. It is used within the Eclipse SDK to package your application for release, and to launch it from within Eclipse. The file is XML-based, but Eclipse provides a very nice GUI editor.

uDig’s application lives in the org.locationtech.udig plug-in:

https://github.com/uDig/udig-platform/blob/master/plugins/org.locationtech.udig/udig.product

Creating the .product File

To create a product for your application, you will need to create a product file and place it in your branding plug-in.

In your Eclipse SDK:

  1. Select File ‣ New ‣ Other...
  2. In the Plug-in Development folder, select Product Configuration and press Next
  3. Select your branding plug-in for the parent folder. (eg: “org.locationtech.udig.community.jody.visual”)
  4. Under File name, enter a file name (eg: “visual.product”)
  5. If you are basing your application off of uDig, under Use an existing product, select org.locationtech.udig.product (Recommended)
  6. Press Finish

This screenshot shows a newly created visual.product file based on udig.product:

_images/newProduct.jpg

Configuring your Product

Product Name

Note that product name is set to “%product.name”. You should either create a plugin.properties file and provide a value, or change it to an appropriate product name (eg: “Visual Application”). For an example properties file, see https://github.com/uDig/udig-platform/blob/master/plugins/org.locationtech.udig/plugin.properties

Feature-Based Product

You can base your product on plug-ins or features. Features are generally preferable as they enable the use of an update-site. This is what uDig uses. If you change it to features, you will have to add the two features uDig depends on, on the Configuration page. These two features are org.locationtech.udig and org.eclipse.rcp. You should also add in your own feature for plug-ins you want to include (ex: org.locationtech.udig.community.jody.visual_feature)

The following screenshot shows the Configuration page of a product based on features:

_images/featureBasedProduct.jpg

Branding

The Launcher and Branding pages can be used to configure the branding of your application. This includes items such as the launching executable’s name and icon, and the splash screen that is shown during start-up.

You probably also want to give your product a launcher name. On the Launcher page, enter a value under Launcher name. (eg: “visual”)

Using the Product to Run your Application

A product file can be used to run your application within Eclipse. On the Overview page, under Testing, there are a couple buttons. Synchronize creates (or updates) the Eclipse run-time configuration (What you see under Run ‣ Run History), and Launch the Product or Launch the Product in Debug mode.

To use the product file to run your application:

  1. Press Synchronize (this isn’t always necessary, but can help fix problems sometimes)
  2. Press on of the Launch buttons.

Using the Product to build a Release

The product file can be used to build an archive containing an executable release of your application. On the Overview page, click Eclipse product export wizard. The wizard will appear and you will be prompted to enter configuration details, such as root directory and destination location.

Change Root directory to something suitable for your application (eg: “visual”). Select Archive file and point it to a location where you want the zip file saved (eg: c:\visual.zip). Press Finish and then wait for it to build.

The following screenshot shows the Eclipse export wizard:

_images/export.jpg

Note that if you wish to export for multiple platforms, you will need to install the Eclispe RCP Delta Pack.

«  Making a Branding Plugin   ::   Contents   ::   Using UDIGApplication  »