sss
sss

Reputation: 668

How do I import an eclipse workspace into intelliJ

I have recently moved from Eclipse / STS to intelliJ and want to export eclipse workspace into intelliJ. I have multiple workspaces with logically grouped projects that I have been working on. While looking for same on idea website or SO, i found multiple results for importing an eclipse project into idea but i am looking for a way where i could have my entire workspace impoorted ( may be as a project and module ?). Is there any way to achieve the same easily ?

Upvotes: 0

Views: 3095

Answers (1)

Konstantin Annikov
Konstantin Annikov

Reputation: 12815

Just open the eclipse workspace in IDEA: click Import Project on the Welcome Screen, or select File | New | Project from Existing Sources in the main menu. See this doc for more information:

https://www.jetbrains.com/help/idea/migrating-from-eclipse-to-intellij-idea.html#migratingEclipseProject

IntelliJ IDEA will convert your workspace to project and your projects to modules inside this project.

Upvotes: 2

Related Questions