Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to port my entire 'workspace' to a USB key (including the Eclipse executable) so that I can carry my work anywhere with me and work off the key directly.

My directory hierarchy is similar to this:

/workspace/eclipse - Where my current eclipse binary is stored
/workspace/codebase - Where I keep the root of all my eclipse projects
/workspace/resources - Where I keep all project files (images, docs, libs, etc.)

It all works perfectly fine on one system. But when I change over to another system, the USB key gets mounted on another drive. For example, on my laptop, I get 'E:\', on my PC, I get 'K:\' and at work I get 'F:\', etc, etc.

This means that because Eclipse (for 'some' reason) seems to only use full path names (including driver letters) in every single one of its configuration files (such as .classpath), nothing ever works when I want to work on another system.

I put a 'libs' directory in the base of every project and populate it with its dependent JAR files. Why doesn't it use relative names instead, so that I could specify something like "../../libs/log4j.jar"?

Anyone know how to fix this problem? Does anyone know of a workaround for this?

For some reason, I really doubt I'm the first developer to do this!

Thanks for your help and any suggestions.


Update: 2010.11.09

Note that I've recently discovered Dropbox, which allows you to sync your files online and across your computers automatically with extreme ease. It includes 2GB of free space and you can upgrade to much more if you want (for a yearly fee).

I installed it on my two laptops, my two PC's, my Linux server and my Android phone and then I created a 'workspace' directory within the 'My Dropbox' folder. From the 'workspace' directory, I then installed Eclipse and created/configured all my projects as usual. I can literally work from any computer and everything always stays perfectly in sync. This is way better than any USB key functionality and its hassle!

share|improve this question

5 Answers

up vote 7 down vote accepted

Have you tried using Eclipse Portable. Works fine for me. The only thing I have to keep in mind is then switching the workspace I need to remember to give it relative path (like ../../Data/workspace).

share|improve this answer
Never heard of it... but I'll look into that right now, thanks! – Jeach Jul 21 '09 at 5:28
When I clicked that link it said "outdated" and led me to another page which was also "outdated" and so on until I got to one that appears to be the newest version. I edited your answer to link to the new version. – MatrixFrog Mar 24 '10 at 5:10
it still takes you to outdated version until you click on another link which takes you to newest version. – Kim Jong Woo Sep 3 '11 at 16:15
okay updated teh link to the latest version. July 2011 – Kim Jong Woo Sep 3 '11 at 16:22
I'm trying to set up an Eclipse installation that will be portable between multiple operating systems. Is it possible to run Eclipse Portable on other platforms using Wine, or does it only work on Windows? – Anderson Green Jan 10 at 1:53

You could use the dos command subst to get a consistent drive letter by creating a new virtual drive letter (say x:) that maps to your Eclipse folder on your usb drive, and then make all the config paths reference the drive x:

You could make a little batch file on the usb drive that you click on to create the drive x:

C:\>help subst
Associates a path with a drive letter.

SUBST [drive1: [drive2:]path]
SUBST drive1: /D

  drive1:        Specifies a virtual drive to which you want to assign a path.
  [drive2:]path  Specifies a physical drive and path you want to assign to
                 a virtual drive.
  /D             Deletes a substituted (virtual) drive.

Type SUBST with no parameters to display a list of current virtual drives.
share|improve this answer

You could also remap letter for your USB stick in Windows Disk Management (subitem in Computer management) to be smth like 'U:'. Once done, it will be re-assigned to same stick every time you plug it. Not very universal, since your user need rights to access this setting first time, but it could help in some different scenarios.

share|improve this answer

You can always use Ant to build your programs, with Ant you can have relative paths... Plus you can also use Ivy to track dependencies in Ant, I do that in every project that I have.

share|improve this answer

Another alternative is to manually edit your .classpath files to contain relative paths.

It is a bit of a hassle, though, as you'll have to manually update the files whenever Eclipse changes them.

share|improve this answer
Yes, I manually edited them once and Eclipse overwrote my changes. I can't figure out why in the world someone would want to use absolute rather than relative paths. Your tough this in Programming 101... but I guess these guys missed that course. – Jeach Jan 31 '12 at 19:51
I'm actually having issues with this now. Apparently, adding projects using a relative path counts as using an non-existing pre-defined parameter ( in other words "../workspace" == "${workspace}../workspace" ) which results in an error that does not allow inclusion of the projects. – Oskuro May 3 '12 at 8:10
Edit: Ok, found the problem, Eclipse stores projects relative to the workspace folder, but if you add subfolders within the workspace folder, it stores them as absolute paths. See here: link – Oskuro May 3 '12 at 8:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.