Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to keep an Eclipse installation in sync between multiple platforms with Dropbox?

Setting up Eclipse on each machine I work it a real headache and I want to keep the Eclipse files and configuration in-sync between several machines.

I want to keep Eclipse in sync on OS X, Linux and Windows so I started getting the OS X version of eclipse because it has the app needed for OS X, as for the other two platforms it's easier to launch it.

What questions/problems I have:

  • What should I not sync?
  • Where can I put JDBC jar files so they are synced too? Is there a way to load them using a relative path?

Any success stories?

Note: this is not about getting the projects themselves in sync, for this there are all blends of SCM.

like image 864
sorin Avatar asked Apr 16 '12 14:04

sorin


2 Answers

You can not share the Eclipse installation directory or the workspace, but the projects themselves are easy to keep in sync using a version management system like cvs, svn, git, etc. I suppose you could store your project contents in a Dropbox folder (or similar file system syncing mechanism) and then just force Refresh when you sit down at a machine that was using those projects, but I've never tried it and would be wary that human error could lead to lost work or corruption of files.

The key is that, although workspaces themselves can't be shared, projects don't have to be located physically under the workspace folder on your file system. That's because the workspace is a logical container for projects, not necessarily a physical container. When creating a project you can specify an arbitrary file system location for the project contents. The default just happens to be under the workspace location. SO on each machine you'd have a separate workspace that imported the project(s) from wherever you are syncing them on your file system. That way the workspace is a tiny container that doesn't require much ongoing maintenance on each machine. I do this locally all the time - I have multiple workspaces on my machine, some of which include the same projects as others.

like image 86
E-Riz Avatar answered Oct 15 '22 00:10

E-Riz


Most of the configuration of Eclipse is in the Workspace. And unfortunately, all the files in it are platform specific. I've tried doing something like this myself and had no luck. Asking questions in their IRC channel didn't leave me with hope either.

like image 27
Andrew T Finnell Avatar answered Oct 15 '22 01:10

Andrew T Finnell