Reputation: 1722
Im Currently working in an old java swing project with eclipse IDE. we wanted to change from eclipse to intellij but we have a problem configuring our eclipse application in intellij. I have tried to generate .launch file and convert it as intellij launcher with eclipser plugin but didn't work.
I have configured maven and everything. The only problem is that im not finding any type of configuration in Intellij as Eclipse application configuration.
Upvotes: 1
Views: 1579
Reputation: 6420
Goto Add maven project , then Just locate your POM.xml and add it.
This is the simplest way to add maven project to intelliJ.
To add Run configuration:
After Edit Configuration you need to add Maven there like below image:
Upvotes: 1
Reputation: 5575
The easiest way to run a project in Intellij, after you created or imported the project, is to alt-click the main class or the Application class and select "run Application". Intellij will setup your run and debug configurations for you.
Upvotes: 0