Randnum
Randnum

Reputation: 1360

The best way to transfer projects from one eclipse to another

I'm trying to transfer everything I'm working on in one eclipse JEE6 project with database to another eclipse program. I know I will have to reconfigure a lot and rebuild a lot of library files but what is the easiest way to transfer as much as I can?

Upvotes: 3

Views: 9192

Answers (1)

CoolBeans
CoolBeans

Reputation: 20800

You should export you eclipse project as an archive file. Then save the archive file to a thumb drive. Then import it back in your other machine's eclipse instance. The database stuff (if you used eclipse to locally connect to a db and see schema info and such) is stored under .metadata\.plugins\org.eclipse.datatools.connectivity\driverStorage.xml . So you can also copy that file over.

File->Export->Archive File and then do File->Import->Archive File

The preferred & safer choice is to use a source repository (ie. svn, git, etc) & commit your project there and then check out the source from there.

Upvotes: 3

Related Questions