Ricard Kollcaku
Ricard Kollcaku

Reputation: 1722

Eclipse Application run config to intellij

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.

Any suggestions? eclipse application configuration

Upvotes: 1

Views: 1579

Answers (2)

Vishwa Ratna
Vishwa Ratna

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.

enter image description here

To add Run configuration:

enter image description here

After Edit Configuration you need to add Maven there like below image:

enter image description here

Upvotes: 1

Christine
Christine

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

Related Questions