The short quetsion:
How do i make only the 'src' folder of an eclipse java project shared across multible computers.
The long quetsion:
One way to have a shared java project across multible computers , is to just drop the project in dropbox and open it with the same IDE in each computer.
The problem in my case comes with the fact that the computers' jvm version varies between java7 and java8, so this approach does not work (compiler error)
Is there a way to share the project in eclipse without sharing the jvm-specific settings?
PS 1: the source code is "compilable" with both versions
PS 2: I am aware of github and i am using it in many cases, but i do not want to use it in this case.