2

I have a Scala project setup and working in my workstation. I want to share the whole project (not only the source files, but also the whole eclipse project) on a shared git-repo in such a way that everyone can clone the shared repo and then import the eclipse project from it. The point being there is (ideally) no need to create an Eclipse project once you cloned from the shared repo, but rather import the project that's already there. Insights ?

Ashkan Kh. Nazary
  • 21,844
  • 13
  • 44
  • 68

1 Answers1

2

You need to:

  • create your eclipse project right along your sources (and not in the Eclipse workspace)
    You can do it with SbtEclipsify.
  • version in Git your Eclipse project files.

If you don't have any absolute path in your project classpath, you will be fine.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250