Java/eclipse
From openSUSE
Contents |
Description
Eclipse[1][2] is an open source community whose projects are focused on providing an extensible development platform and application frameworks for building software. Eclipse provides extensible tools and frameworks that span the software development lifecycle, including support for modeling, language development environments for Java, C/C++ and others, testing and performance, business intelligence, rich client applications and embedded development. A large, vibrant ecosystem of major technology vendors, innovative start-ups, universities and research institutions and individuals extend, complement and support the Eclipse Platform.
Availability
| Version: 10.0
| Note for x86-64: the eclipse version 3.1 from SuSE 10.0 [3] is the i586 version, which does not run on 64-bit jdk 1.5. Install jdk 1.4.2, which is 32 bit (don't forget running update-alternatives --config javac ) |
| Version: 10.1
| Eclipse is not included on the Beta ISO images of 10.1 BetaX, instead fetch the package from the current factory tree ( see Factory_Distribution for yast2 and yum sources) |
| Version: 10.1
| Note for x86-64: the eclipse version 3.1.1 from SuSE 10.1 is the i586 version, which does not run on 64-bit jdk 1.5 which will be installed as default. Install jdk 1.5 for i586 instead, which is 32 bit, by selecting it under Versions in YaST (don't forget running update-alternatives --config javac ) |
HowTos
Creating a local extension location
To add plugins to the Eclipse IDE you need to create an extension location that is writeable for your user. The directory structure for an extension location looks like this:
~/.eclipse/
eclipse/
.eclipseextension
features/
plugins/
The location ".eclipse" is just an example, you can create it anywhere. The file ".eclipseextension" must have the following content:
id=org.eclipse.platform name=Eclipse Platform version=3.1.1
where version should match your used eclipse version. To make eclipse recognize the new extension location, go to "Help"->"Software Updates"->"Manage Configuration" and add the location.
More tips on managing extension and workspace locations can be found here: [[4]]
Using tomcat5 from within Eclipse
Running a tomcat servlet container from within Eclipse can be very useful for
developing Java based web applications.
For instructions on how to integrate tomcat5 into eclipse, see Java/tomcat5

