Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Bare" Eclipse Installation for Generic Projects

Tags:

eclipse

Members of my team will be working on a number of plain-text files. Rather than using a normal text editor, I would like them to utilize eclipse, so we can take advantage of the plug-ins that will make life easier... such as the svn plugin.

Therefore, I would like to provide them with an installation of Eclipse where they will set up generic projects, rather than Java projects.

However, the basic Eclipse download from the website includes all the java functionality. This means that their GUI is littered with java-related functions that are not required, and I don't really want them using.

I have attempted to remove the JDT plugins / features from the installation, but at this point the generic project functions disappear too!

How can one go about removing java functionality whilst retaining generic project functionality?

like image 292
jwa Avatar asked Jun 06 '14 09:06

jwa


People also ask

Is there an installer for Eclipse?

The new Eclipse Installer shows the packages available to Eclipse users. You can search for the package you want to install or scroll through the list. Select and click on the package you want to install.

How do I download and install Eclipse?

Installation of Eclipse IDE on Windows:Step 1: In the first step, Open your browser and navigate to this URL. Step 2: Then, click on the “Download” button to download Eclipse IDE. Step 3: Now, click on the “Download x86_64” button. Step 4: Then click on the “Download” button.

Why is Eclipse not installing?

Make sure your JDK is also 64-bit, and make sure the version of Eclipse you have downloaded is 64-bit. If everything is not aligned (system, JDK, IDE) as 64-bit you will get all kinds of strange errors and your IDE will not start. UPDATE: The issue occurs when you are installing a plug-in.


1 Answers

The 'Eclipse Platform' contains the minimal Eclipse without the JDT or PDE Tools.

Go to http://download.eclipse.org/eclipse/downloads/ and choose either Eclipse Kepler 4.3.2 or the release candidate of Eclipse Luna 4.4.RC3 (RC4 later today). Choose the appropriate download from the 'Platform Runtime Binary' section.

Update:

You need to open the Resource perspective to create projects and edit files - use Window > Open Perspective > Other... > Resource. The resource perspective should already be open if you start with a new workspace.

like image 83
greg-449 Avatar answered Sep 30 '22 14:09

greg-449