MayoMan
MayoMan

Reputation: 4917

How to import Eclipse projects to IntelliJ IDEA?

I want to import my Eclipse projects into IntelliJ IDEA, so I went to the IntelliJ IDEA help page:

If no project is currently open in IntelliJ IDEA, click Import Project on the Welcome screen. Otherwise, select File | Import Project.

Problem is there is no Import Project option on the welcome screen and there is no Import Project option in the file menu.

Any ideas how to do this?

I checked for updates and it's telling me my 11.1.3 version is the latest, even though the help page has 12.0 in the title bar.

Upvotes: 46

Views: 76735

Answers (3)

CrazyCoder
CrazyCoder

Reputation: 401877

In IntelliJ IDEA 11 you should use File | New Project, Import project from external model.

Also check that Eclipse Interoperability plug-in is enabled in Settings | Plugins.

Upvotes: 5

Matthias A. Eckhart
Matthias A. Eckhart

Reputation: 5156

In IntelliJ IDEA 14.1.4 you can import a project with the following existing sources:

  • Eclipse project (.project) or classpath (.classpath) file
  • Maven project file (pom.xml)
  • Bnd/Bndtools workspace (workspace/cnf)
  • Flash Builder project file (.project, *.fxp, *.fxpl)
  • Gradle build script (*.gradle)

Go to FileNewProject from Existing Sources… and a dialog will open that allows you to open one of the supported files or directories.

IntelliJ IDEA 14.1.4 - Project from Existing Sources…

Upvotes: 56

nkr
nkr

Reputation: 3058

In IntelliJ IDEA 11.1 you can find the import option in the New Project dialog. You can find it at File | New Project.

Upvotes: 11

Related Questions