Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "UFaceKit/Getting Started Swing"

(New page: === Download dependencies === Until we have a build which provides a set of targets you need to download the up-stream dependencies first: * [http://download.eclipse.org/equinox/drops/R-3...)
 
(Download dependencies)
Line 1: Line 1:
=== Download dependencies ===
+
== Setting up dependencies ==
 +
 
 +
Until we have a build which provides a set of targets you need to install some dependencies by hand:
 +
 
 +
=== Downloadable dependencies ===
 +
 
 +
This dependencies are available as .jar packages
  
Until we have a build which provides a set of targets you need to download the up-stream dependencies first:
 
 
* [http://download.eclipse.org/equinox/drops/R-3.4.2-200902111700/download.php?dropFile=org.eclipse.osgi_3.4.3.R34x_v20081215-1030.jar OSGI]
 
* [http://download.eclipse.org/equinox/drops/R-3.4.2-200902111700/download.php?dropFile=org.eclipse.osgi_3.4.3.R34x_v20081215-1030.jar OSGI]
 
* [http://download.eclipse.org/equinox/drops/R-3.4.2-200902111700/download.php?dropFile=org.eclipse.equinox.common_3.4.0.v20080421-2006.jar Equinox Common]
 
* [http://download.eclipse.org/equinox/drops/R-3.4.2-200902111700/download.php?dropFile=org.eclipse.equinox.common_3.4.0.v20080421-2006.jar Equinox Common]
 
* [http://download.eclipse.org/tools/orbit/downloads/drops/S20090307012903/bundles/com.ibm.icu.base_4.0.1.v20090109.jar ICU-Base]
 
* [http://download.eclipse.org/tools/orbit/downloads/drops/S20090307012903/bundles/com.ibm.icu.base_4.0.1.v20090109.jar ICU-Base]
* (Uncertain)[http://download.eclipse.org/tools/orbit/downloads/drops/S20090307012903/bundles/com.ibm.icu_4.0.1.v20090109.jar ICU]
+
 
 +
=== Fetch CVS-Dependencies ===
 +
 
 +
These dependencies are not available as extra .jars so you need to download fetch them from CVS
 +
 
 +
* anonymous@pserver:/cvsroot/eclipse/org.eclipse.core.databinding
 +
* anonymous@pserver:/cvsroot/eclipse/org.eclipse.core.databinding.beans
 +
 
 +
You now have to import org.eclipse.core.databinding and org.eclipse.core.databinding.beans into Netbeans using the Eclipse-Project-Import-Wizard and edit the Project properties.
 +
 
 +
* org.eclipse.core.databinding
 +
  [[Image:db_core.png]]
 +
* org.eclipse.core.databinding.beans
 +
  [[Image:db_beans.png]]

Revision as of 05:02, 20 March 2009

Setting up dependencies

Until we have a build which provides a set of targets you need to install some dependencies by hand:

Downloadable dependencies

This dependencies are available as .jar packages

Fetch CVS-Dependencies

These dependencies are not available as extra .jars so you need to download fetch them from CVS

  • anonymous@pserver:/cvsroot/eclipse/org.eclipse.core.databinding
  • anonymous@pserver:/cvsroot/eclipse/org.eclipse.core.databinding.beans

You now have to import org.eclipse.core.databinding and org.eclipse.core.databinding.beans into Netbeans using the Eclipse-Project-Import-Wizard and edit the Project properties.

  • org.eclipse.core.databinding
 Db core.png
  • org.eclipse.core.databinding.beans
 Db beans.png

Back to the top