VXJ8464
VXJ8464

Reputation: 51

Import the jersey source code in Eclipse

I'm trying to import the current jersey 2.11 source code into my local eclipse workspace. I have downloaded the source code in zip format from the URL below. https://github.com/jersey/jersey/tree/2.11

Now I'm trying to import it as an existing Maven project. My plan is to modify it and create my own jersey modification.

It will be great if anyone has done it earlier or something similar to this. Thanks!

Upvotes: 1

Views: 942

Answers (1)

TimoStaudinger
TimoStaudinger

Reputation: 42460

Depending on your version of Eclipse, importing an existing Maven project is easy:

  1. Choose menu File > Import...
  2. Choose option Maven > Existing Maven Projects enter image description here
  3. Select the root folder of the repository you downloaded and choose the project you want to import.

Upvotes: 1

Related Questions