Barry Brown
Barry Brown

Reputation: 20604

Eclipse: which files to store in version control for GWT project

I'm working on a GWT project in Eclipse with Mercurial for revision control.

Which files should I store under version control? Or, perhaps more succinctly, which files should I not store since they are either part of GWT or are artifacts of the build process?

I'm using Eclipse Helios and GWT 2.0.4. This question would apply to any version control system: Mercurial, Subversion (SVN), CVS, etc.

Upvotes: 5

Views: 657

Answers (1)

VonC
VonC

Reputation: 1324567

If your project is located outside your workspace, I would store everything but:

Make sure you take advantage of relative paths in your .project/.classpath (since Eclipse 3.5.2)

Upvotes: 2

Related Questions