NyaSol
NyaSol

Reputation: 567

How to collaborate on a dynamic web project using eclipse

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

  1. I don't have the option to run as -> run on a server
  2. the libraries are not included in the build path

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

Answers (1)

nitind
nitind

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

Related Questions