Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Importing/Exporting Project Preferences

Tags:

eclipse

Having a bit of a problem,

Due to the source-control set-up we use, each bug/enhancement is worked on in a new branch. This is fine, but when in Eclipse, we need to set-up a new project for every branch.

Is there any way of easily setting up default preferences for a project, or importing/exporting project preferences within Eclipse?

Thanks,

Stuart

like image 871
Spedge Avatar asked May 19 '09 08:05

Spedge


People also ask

How do I Export project settings in Eclipse?

Since preferences are persisted on a workspace basis within Eclipse, you have to export your workspace preferences and import them to your desired workspaces ( File > Export > Preferences ).


1 Answers

One possible solution would be to store those common preferences at the workspace level for Eclipse (see Manage your Eclipse environment article)

The downside of having multiple workspaces is the need to share development preferences among them.
Since preferences are persisted on a workspace basis within Eclipse, you have to export your workspace preferences and import them to your desired workspaces (File > Export > Preferences).

Even if you stay in the same workspace (with several projects), you can share common settings with other developers by exporting those workspace preferences.

settings

As mentioned by Fabian, the project specific settings are in .classpath and .project, but he left out .settings:

.settings are for IDE project-specific settings like compiler warnings and so on.
It you want to share project-specific IDE-related settings, just copy the .settings directory from project directory to project directory.

Tips: copy your project launcher (created by default in <workspace>\.metadata\.plugins\org.eclipse.debug.core\.launches) into your .settings directory: that way, you will also share your custom project launchers.

like image 110
VonC Avatar answered Sep 17 '22 18:09

VonC