Reputation: 567
I've created a project and pushed it to GitHub, here is the repo: https://github.com/nati-elmaliach/CommunicationLTD-servlet
Now I want developers to clone this project and import it into eclipse as a dynamic web project version 2.5 since this is the template I used to create this project.
So what I did was: file -> import -> existing project into the workspace -> set the root directory
I've also included the jars needed to run this project under WebContent/WEB-INF/lib/
How can I clone and start working on the project, assuming I already have a tomcat server installed and configured?
Upvotes: 0
Views: 179
Reputation: 20003
You didn't commit the .settings folder. There's a file in there that indicates that it's a dynamic web project. You should also refer to the JRE from within the project by its Execution Environment, instead of the name of the JRE in your preferences--which would be pretty specific to your machine.
Upvotes: 1