sylas
sylas

Reputation: 29

How to import IntelliJ project into Eclipse

I am trying to export a java project from IntelliJ to Eclipse by using the "export to eclipse" option in IntelliJ but I get the following error:

"Eclipse incompatible modules found" in a dialog box occured.

How can I solve it?

Upvotes: 3

Views: 3647

Answers (1)

Augusto Neto
Augusto Neto

Reputation: 11

To convert an IntelliJ IDEA module to the Eclipse-compatible format, follow these steps:

  • On the main menu, choose "File" | "Project Structure", or press "Ctrl+Shift+Alt+S".
  • In the "Project Structure Dialog" dialog, select the module you want to convert.
  • Switch to the "Dependencies Tab" tab.
  • From the Dependencies storage format drop-down list, select Eclipse (.classpath).

Upvotes: 1

Related Questions