-4

I want to import this repository as a java project in Eclipse but eclipse doesn't recognize it as a valid project.

Any help will be appreciated, thank you.

Kilo Batata
  • 81
  • 1
  • 2
  • 6

1 Answers1

1

As the comments say, this is a Maven project. You can use Maven to generate an Eclipse project and import that.

  1. Install Maven
  2. In the project directory run mvn eclipse:eclipse
  3. Import project directory into Eclipse

According to the comments and another question, newer versions of Eclipse allow you to simple import it from the import menu. Just select Maven as the import source in the wizard and then select Existing Maven Projects.

kichik
  • 33,220
  • 7
  • 94
  • 114