Reputation: 4917
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
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
Reputation: 5156
In IntelliJ IDEA 14.1.4 you can import a project with the following existing sources:
.project
) or classpath (.classpath
) filepom.xml
)workspace/cnf
).project
, *.fxp
, *.fxpl
)*.gradle
)Go to File → New → Project from Existing Sources… and a dialog will open that allows you to open one of the supported files or directories.
Upvotes: 56
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