Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I run an Eclipse launcher file in IntelliJ IDEA?

Tags:

I have a Eclipse .launch file that a developer has created to set up the classpath, vm and program arguments from a XML file that Eclipse uses to launch the program.

I want to be able to run this file in IntelliJ IDEA but is there an automatic way without manually creating the settings?

like image 758
algolicious Avatar asked Mar 22 '11 09:03

algolicious


People also ask

How do I enable Eclipse shortcuts in IntelliJ?

Configure keyboard shortcuts IntelliJ IDEA includes several predefined keymaps and lets you customize frequently used shortcuts. To view the keymap configuration, open the Settings/Preferences dialog Ctrl+Alt+S and select Keymap. IntelliJ IDEA automatically suggests a predefined keymap based on your environment.

How do I open an existing Java project in IntelliJ?

Launch IntelliJ IDEA. If the Welcome screen opens, press Ctrl+Shift+A , type project from existing sources , and click the Import project from existing sources action in the popup. Otherwise, from the main menu, select File | New | Project from Existing Sources.

Can we run IntelliJ project in Eclipse?

From the main menu, select File | Export | Project to Eclipse…. The Export to Eclipse dialog displays the list of modules that have not been converted and switched to use the Eclipse format yet (the modules that have the IntelliJ IDEA module format . iml). Select the modules you want to export.


1 Answers

Try the Eclipser plugin

http://plugins.jetbrains.com/plugin?pluginId=7153

Eclipser will automatically convert Eclipse launch configurations into IntelliJ IDEA configurations

However it currently (as of November 2014) supports only very limited number of launch types:

  • local Java application (...)
  • program launch (...)
  • Maven launcher (...)

See https://github.com/kukido/eclipser/wiki for details.

like image 96
Jean-Michel Garcia Avatar answered Oct 23 '22 02:10

Jean-Michel Garcia